ludc
2024-11-19 03e9924452d0e7068609378c1d91dc0916c21a98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.starter.web.constant;
 
/**
 * 默认的版本规则的名称
 * @author weidy
 * @date 2020/4/15
 */
public class RevisionConstant {
 
    /**
     * 以字母大A开始的编码规则,没有前缀和后缀,步长为1,并且也没有跳跃字符
     */
    public static final String CHARACTER = "characterversionrule";
 
    /**
     * 以数字
     */
    public static final String NUMBER = "numberversionrule";
}