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
package com.changhong.epc.tenant.mapper.tenant.system;
 
import com.changhong.epc.bean.tenant.system.ErrSystemMsg;
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface ErrSystemMsgMapper extends MybatisBaseMapper<ErrSystemMsg>{
    /**
     * 查询表中元素数量
     * @return
     */
//    int selectCount(ErrSystemMsg errSystemMsg);
    
    /**
     * 查询数据类型
     * @return
     */
    List<ErrSystemMsg> selectType();
    
    /**
     * 按数据类型分页查询
     * @param errSystemMsg
     * @return
     */
    List<ErrSystemMsg> selectByTypePage(@Param("err") ErrSystemMsg errSystemMsg);
    
    /**
     * 按Id改变数据状态
     * @param flag
     * @return
     */
    int updateFlag(@Param("id") Integer id);
}