up
lyfO_o
2022-04-26 24aeee2fe7b76c7e9a8731f7bef93b48a47da17f
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;
}