1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.nanometer.smartlab.service;
|
| import com.nanometer.smartlab.entity.BasePage;
|
| import java.util.List;
|
| /**
| * Created by johnny on 17/11/20.
| */
| public interface BasePageService {
|
| public List<BasePage> getBasePageList();
| public BasePage getBasePage(String id);
| }
|
|