inleft
2022-07-14 f639b5bf8a20b72b782558ca01f086a4ed54c520
snowy-base/snowy-core/src/main/java/vip/xiaonuo/core/consts/MyConstant.java
@@ -1,12 +1,29 @@
package vip.xiaonuo.core.consts;
public interface MyConstant {
    Integer No = 0;
    Integer Yes = 1;
    Integer No = 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";
    interface AuthStatus {
        int publicCode = 1;
        int privateCode = 2;
        int authCode = 3;
    }
    /**
     * 留言类型 1:留言板 2:日志评论
     */
    interface CommentType {
        int type_1 = 1;
        int type_2 = 2;
    }
}