1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.iocoder.yudao.module.mes.service.dv.metering;
|
| /**
| * MES 计量器具到期提醒 Service 接口
| *
| * @author 超级管理员
| */
| public interface MesDvMeteringRemindService {
|
| /**
| * 发送到期提醒站内信(懒触发,幂等)
| *
| * 在计量器具分页查询时触发:先抢当天扫描门闩,再查到期器具,按器具+到期日去重后逐台发站内信。
| */
| void sendExpireRemind();
|
| }
|
|