inleft
2022-07-29 ba780fb8c047c665f8d85c013b02e47f8269451d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package vip.xiaonuo.core.consts;
 
import java.util.ArrayList;
import java.util.List;
 
public interface MyConstant {
    Integer No = 0;
    Integer Yes = 1;
    String limit = " limit 1 ";
 
 
    String privateComment = "(悄悄话已隐藏)******";
    String checkComment = "(未审核消息)******";
    String inleft = "inleft";
    String email = "inleft@qq.com";
    String url_1 = "http://blog.inleft.com/comment#%d";
    String url_2 = "http://blog.inleft.com/mdDetail?id=%d#%d";
 
    List<String> myIds = new ArrayList(3) {{
        add(MyConstant.inleft);
        add("阿墨");
        add("笔墨");
    }};
 
    interface AuthStatus {
        int publicCode = 1;
        int privateCode = 2;
        int authCode = 3;
    }
 
 
    /**
     * 留言类型 1:留言板 2:日志评论
     */
    interface CommentType {
        int type_1 = 1;
        int type_2 = 2;
    }
}