zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
36
37
38
39
40
41
package com.changhong.epc.tenant.service.system;
 
import com.changhong.epc.bean.tenant.system.ErrSystemMsg;
import com.changhong.epc.bean.tenant.system.MasterErrMsg;
 
import java.util.List;
 
public interface ErrSystemMsgService {
    
    /**
     * 查询数据类型
     * @return
     */
    List<ErrSystemMsg> selectType();
    
    /**
     * 按数据类型分页查询
     * @param errSystemMsg
     * @return
     */
    List<ErrSystemMsg> selectByTypePage(ErrSystemMsg errSystemMsg);
    
    /**
     * 按Id改变数据状态
     * @param flag
     * @return
     */
    int updateFlag(Integer id);
    
    /**
     * 添加消息
     */
    int insertErrSystem(ErrSystemMsg errSystemMsg);
 
    /**
     * 添加主数据缺失错误信息
     * @param masterErrMsg
     * @return
     */
    ErrSystemMsg insertMasterMsg(MasterErrMsg masterErrMsg);
}