package cn.com.lzt.message.personal.service; import cn.com.lzt.message.personal.entity.MPersonalMessageEntity; import org.jeecgframework.core.common.service.CommonService; import org.jeecgframework.minidao.pojo.MiniDaoPage; import java.io.Serializable; import java.util.List; public interface MPersonalMessageServiceI extends CommonService{ public void delete(MPersonalMessageEntity entity) throws Exception; public Serializable save(MPersonalMessageEntity entity) throws Exception; public void saveOrUpdate(MPersonalMessageEntity entity) throws Exception; /** * 个人消息 * @param userId * @param noticeType 通知类型 : 红头文件、会议通知等 * @param isRead 是否已读 0未读 1已读 * @param page * @param row * @return */ public MiniDaoPage getUserMessage(String userId, String noticeType,Integer isRead, Integer page, Integer row); }