IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package service.myPanel;
 
import model.myPanel.MyCharts;
import model.myPanel.MyPanel;
 
import java.util.List;
 
/**
 * 设计面板信息查询,添加等相关操作类
 * Created by ct on 2016/8/23.
 */
public interface MyPanelService {
 
    String insert(MyPanel myPanel) throws Exception;
 
    MyPanel queryAsObject(String exportId) throws Exception;
 
    int update(MyPanel myPanel) throws Exception;
 
    List<MyPanel> queryAsList(MyPanel myPanel) throws Exception;
 
    int delete(String exportId) throws Exception;
}