inleft
2022-07-14 f639b5bf8a20b72b782558ca01f086a4ed54c520
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 = "(未审核消息)******";
f639b5 10     String inleft= "inleft";
I 11     String email = "inleft@qq.com";
12     String url_1 = "http://blog.inleft.com/comment#%d";
13     String url_2 = "http://blog.inleft.com/mdDetail?id=%d#%d";
42b7d0 14
bd3bc1 15     interface AuthStatus {
I 16         int publicCode = 1;
17         int privateCode = 2;
18         int authCode = 3;
19     }
88f419 20
I 21
22     /**
23      * 留言类型 1:留言板 2:日志评论
24      */
25     interface CommentType {
26         int type_1 = 1;
27         int type_2 = 2;
28     }
0613f2 29 }