1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cn.iocoder.yudao.module.mes.service.pro.task;
|
| /**
| * MES 生产任务报工倒计时提醒 Service 接口
| *
| * @author 超级管理员
| */
| public interface MesProTaskWaitRemindService {
|
| /**
| * 扫描生产任务报工倒计时,按三个等级(剩余 10 分钟 / 5 分钟 / 结束)发送站内信提醒
| */
| void sendWaitRemind();
|
| }
|
|