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{ /** * 查询表中元素数量 * @return */ // int selectCount(ErrSystemMsg errSystemMsg); /** * 查询数据类型 * @return */ List selectType(); /** * 按数据类型分页查询 * @param errSystemMsg * @return */ List selectByTypePage(@Param("err") ErrSystemMsg errSystemMsg); /** * 按Id改变数据状态 * @param flag * @return */ int updateFlag(@Param("id") Integer id); }