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 selectType(); /** * 按数据类型分页查询 * @param errSystemMsg * @return */ List selectByTypePage(ErrSystemMsg errSystemMsg); /** * 按Id改变数据状态 * @param flag * @return */ int updateFlag(Integer id); /** * 添加消息 */ int insertErrSystem(ErrSystemMsg errSystemMsg); /** * 添加主数据缺失错误信息 * @param masterErrMsg * @return */ ErrSystemMsg insertMasterMsg(MasterErrMsg masterErrMsg); }