zhy
2023-10-26 47e3a50f0abea3f854d42c3cb16a8e2a73e446e2
consum-base/src/main/java/com/consum/base/Constants.java
@@ -42,4 +42,20 @@
    // 是否完成
    public static final Integer PROJECT_YES = 1;// 已完成
    public static final Integer PROJECT_NO = 0;// 未完成
    //物品分类层级(1,2,3)
    public static final Integer LEVELS_ONE = 1;
    public static final Integer LEVELS_TWO = 2;
    public static final Integer LEVELS_THREE = 3;
    //STATES 1=正常;2=禁用;3=已删除
    public static final Integer STATES_ENABLE = 1;
    public static final Integer STATES_DISABLE = 2;
    public static final Integer STATES_DELETED = 3;
    //is_delete 逻辑删除(0 否 1 是)
    public static final Integer IS_DELETE_NO = 0;
    public static final Integer IS_DELETE_YES = 1;
}