inleft
2022-03-02 34223b096cf6ad9d92c3702bb9529e764f523b11
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
42b7d0 7
I 8     String privateComment = "(悄悄话已隐藏)******";
9     String checkComment = "(未审核消息)******";
10
bd3bc1 11     interface AuthStatus {
I 12         int publicCode = 1;
13         int privateCode = 2;
14         int authCode = 3;
15     }
88f419 16
I 17
18     /**
19      * 留言类型 1:留言板 2:日志评论
20      */
21     interface CommentType {
22         int type_1 = 1;
23         int type_2 = 2;
24     }
0613f2 25 }