File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1448,7 +1448,7 @@ CREATE TABLE `tb` (
14481448 login_success(0):登录成功,
14491449 login_fail(1):登录失败
14501450 ]' ,
1451- ` other_type ` varchar (20 ) COMMENT ' 具体注释的写法是比较宽泛的,只要匹配上面正则就行
1451+ ` user_type ` varchar (20 ) COMMENT ' 具体注释的写法是比较宽泛的,只要匹配上面正则就行
14521452 [ success ( 我是具体值 ) : 我是值的描述_我可以是中英文数字和下划线_xxx_123, fail_xx_3
14531453 (1 ) : 失败] 后面也可以跟注释'
14541454);
@@ -1499,14 +1499,14 @@ public class Tb {
14991499 }
15001500 }
15011501
1502- public enum OtherType {
1502+ public enum UserType {
15031503 SUCCESS (" 我是具体值" , " 我是值的描述_我可以是中英文数字和下划线_xxx_123" ),
15041504 FAIL_XX_3 (" 1" , " 失败" );
15051505
15061506 private final String value;
15071507 private final String name;
15081508
1509- OtherType (String value , String name ) {
1509+ UserType (String value , String name ) {
15101510 this . value = value;
15111511 this . name = name;
15121512 }
You can’t perform that action at this time.
0 commit comments