wangting
2024-11-29 893ce756a697d6b2b8c13cbfa56119218d6894f4
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";
}