package com.ydtech.modules.message.service; import com.github.pagehelper.PageInfo; import com.ydtech.modules.message.entity.SystemMessage; import com.ydtech.modules.message.entity.SystemMessageVo; import com.ydtech.modules.message.entity.dto.SystemMessageDTO; import java.util.List; import java.util.Map; public interface SystemMessageService { PageInfo getSystemMessageByUser(SystemMessageVo systemMessageVo); void addSystemMessageList(List systemMessageList); void updateSystemMessageByUser(Integer id); String makeMessage(String modelId, Map map, String defV); }