inleft
2022-03-01 88f419df77ade235ea5e5e24be204842a24b7b33
snowy-base/snowy-core/src/main/java/vip/xiaonuo/core/consts/MyConstant.java
@@ -1,6 +1,21 @@
package vip.xiaonuo.core.consts;
public interface MyConstant {
    Integer No = 0;
    Integer Yes = 1;
    Integer No = 1;
    interface AuthStatus {
        int publicCode = 1;
        int privateCode = 2;
        int authCode = 3;
    }
    /**
     * 留言类型 1:留言板 2:日志评论
     */
    interface CommentType {
        int type_1 = 1;
        int type_2 = 2;
    }
}