| | |
| | | package com.supersavedriving.driver.modular.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.service.IService; |
| | | import com.supersavedriving.driver.modular.system.model.SystemMessage; |
| | | import com.supersavedriving.driver.modular.system.warpper.SystemMessageWarpper; |
| | | import com.supersavedriving.driver.modular.system.model.SystemMessage; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param content 消息内容 |
| | | * @throws Exception |
| | | */ |
| | | void addSystemMessage(Integer userId, Integer userType, String title, String content) ; |
| | | void addSystemMessage(Integer userId, Integer userType, String title, String content) throws Exception; |
| | | |
| | | |
| | | /** |
| | | * 清空系统消息 |
| | | * @param userId |
| | | */ |
| | | void clearSystemMessage(Integer userId) throws Exception; |
| | | } |