5 天以前 8f7c42bb0bced4697755299f67483be11da3e44d
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:";
 
}