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
package service.myPanel;
 
import model.myPanel.PanelChartsWrapper;
 
import java.util.List;
 
/**
 * Created by ct on 2016/9/5.
 */
public interface PanelChartsWrapperService {
    int insert(PanelChartsWrapper panelChartsWrapper) throws Exception;
 
    int delete(PanelChartsWrapper panelChartsWrapper) throws Exception;
 
    int update(PanelChartsWrapper panelChartsWrapper) throws Exception;
 
    List<PanelChartsWrapper> selectList(PanelChartsWrapper panelChartsWrapper) throws Exception;
}