SystemMessageService.java 640 B

12345678910111213141516171819202122
  1. package com.ydtech.modules.message.service;
  2. import com.github.pagehelper.PageInfo;
  3. import com.ydtech.modules.message.entity.SystemMessage;
  4. import com.ydtech.modules.message.entity.SystemMessageVo;
  5. import com.ydtech.modules.message.entity.dto.SystemMessageDTO;
  6. import java.util.List;
  7. import java.util.Map;
  8. public interface SystemMessageService {
  9. PageInfo<SystemMessageDTO> getSystemMessageByUser(SystemMessageVo systemMessageVo);
  10. void addSystemMessageList(List<SystemMessage> systemMessageList);
  11. void updateSystemMessageByUser(Integer id);
  12. String makeMessage(String modelId, Map<String, String> map, String defV);
  13. }