MPersonalMessageServiceI.java 918 B

12345678910111213141516171819202122232425262728
  1. package cn.com.lzt.message.personal.service;
  2. import cn.com.lzt.message.personal.entity.MPersonalMessageEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import org.jeecgframework.minidao.pojo.MiniDaoPage;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. public interface MPersonalMessageServiceI extends CommonService{
  8. public void delete(MPersonalMessageEntity entity) throws Exception;
  9. public Serializable save(MPersonalMessageEntity entity) throws Exception;
  10. public void saveOrUpdate(MPersonalMessageEntity entity) throws Exception;
  11. /**
  12. * 个人消息
  13. * @param userId
  14. * @param noticeType 通知类型 : 红头文件、会议通知等
  15. * @param isRead 是否已读 0未读 1已读
  16. * @param page
  17. * @param row
  18. * @return
  19. */
  20. public MiniDaoPage<MPersonalMessageEntity> getUserMessage(String userId, String noticeType,Integer isRead, Integer page, Integer row);
  21. }