【优化】消息发送服务添加日志
This commit is contained in:
parent
921bf67376
commit
6a540f9254
|
|
@ -1,12 +1,18 @@
|
||||||
package com.nflg.qms.admin.service;
|
package com.nflg.qms.admin.service;
|
||||||
|
|
||||||
import com.nflg.wms.repository.entity.QmsTodoItem;
|
import com.nflg.wms.repository.entity.QmsTodoItem;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public interface ISendMessageService {
|
public interface ISendMessageService {
|
||||||
|
|
||||||
|
Logger log = LoggerFactory.getLogger(ISendMessageService.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 发送待办消息
|
* 发送待办消息
|
||||||
* @param item 待办事项
|
* @param item 待办事项
|
||||||
*/
|
*/
|
||||||
void sendSystemMessage(QmsTodoItem item);
|
default void sendSystemMessage(QmsTodoItem item){
|
||||||
|
log.warn("方法未实现");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue