lyfO_o
2021-10-21 ab570b8dd8e9fe5c154a3f34129639636078b2a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.BasePage;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
 
/**
 * Created by johnny on 17/11/18.
 */
public interface BasePageDao {
 
    public BasePage getBasePage(String id) throws DataAccessException;
    public List<BasePage> getBasePageList() throws DataAccessException;
}