huminmin
8 天以前 b48ed5159987e8cee81bc765010cfd9393ad7003
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package cn.iocoder.yudao.module.mes.dal.redis;
 
/**
 * MES Redis Key 枚举类
 *
 * @author 超级管理员
 */
public interface RedisKeyConstants {
 
    /**
     * 编码规则的缓存
     *
     * KEY 格式:mes:md:auto_code:{ruleId}:{cycleKey}
     * VALUE 数据格式:流水号自增
     */
    String AUTO_CODE = "mes:md:auto_code:";
 
    /**
     * 计量器具到期提醒去重
     *
     * KEY 格式:mes:dv:metering:remind:{meteringId}:{nextCheckDate}
     * VALUE 数据格式:1
     */
    String METERING_EXPIRE_REMIND = "mes:dv:metering:remind:";
 
    /**
     * 计量器具到期提醒扫描门闩
     *
     * KEY 格式:mes:dv:metering:remind:scan:{today}
     * VALUE 数据格式:1
     */
    String METERING_EXPIRE_REMIND_SCAN = "mes:dv:metering:remind:scan:";
 
}