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";
| }
|
|