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
24
25
26
27
28
29
30
31
32
33
34
35
package service.myPanel;
 
import model.myPanel.MyCharts;
 
import java.util.List;
 
/**
 * Created by ct on 2016/8/30.
 */
public interface MyChartsService {
    /**
     * 添加一个图表的所有相关信息
     */
    int insert(MyCharts myCharts) throws Exception;
 
    /**
     * 更新一个图表的所有相关信息
     */
    int update(MyCharts myCharts) throws  Exception;
 
    /**
     * 删除一个图表的所有相关信息
     */
    int delete(MyCharts myCharts) throws  Exception;
 
    /**
     * 查询一个图表的相关信息
     */
    MyCharts selectOneChartInfo(MyCharts myCharts) throws Exception;
 
    /**
     * 查询所有图表的相关信息
     */
    List<MyCharts> selectChartInfo(MyCharts myCharts) throws Exception;
}