hsy
9 天以前 56e8a8e8f6c90faf8240a5a05d64a6da441888ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.iocoder.yudao.module.aftersales.dal.redis;
 
/**
 * 售后模块 Redis Key 常量
 */
public interface RedisKeyConstants {
 
    /**
     * 序号的缓存
     *
     * KEY 格式:aftersales:seq_no:{prefix}
     * VALUE 数据格式:编号自增
     */
    String NO = "aftersales:seq_no:";
 
}