1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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:";
|
| }
|
|