inleft
2022-03-01 88f419df77ade235ea5e5e24be204842a24b7b33
commit | author | age
0613f2 1 package vip.xiaonuo.core.consts;
I 2
3 public interface MyConstant {
88f419 4     Integer No = 0;
0613f2 5     Integer Yes = 1;
bd3bc1 6
I 7     interface AuthStatus {
8         int publicCode = 1;
9         int privateCode = 2;
10         int authCode = 3;
11     }
88f419 12
I 13
14     /**
15      * 留言类型 1:留言板 2:日志评论
16      */
17     interface CommentType {
18         int type_1 = 1;
19         int type_2 = 2;
20     }
0613f2 21 }