package com.laoxie.auto.dal.redis;

/**
 * AUTO Redis Key 枚举类
 *
 * @author 株齿云
 */
public interface RedisKeyConstants {

    /**
     * 序号的缓存
     *
     * KEY 格式：trade_no:{prefix}
     * VALUE 数据格式：编号自增
     */
    String NO = "auto:seq_no:";

}
