liyong
4 天以前 f90d9f53beb844265c4153159aadb0baf81bafdb
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:";
 
}