futian.liu
2023-12-07 76c7d995ac56b60880e998df5e9e3d82fea313f8
consum-base/src/main/java/com/consum/base/Constants.java
@@ -48,9 +48,22 @@
    public static final Integer LEVELS_TWO = 2;
    public static final Integer LEVELS_THREE = 3;
    //物品分类STATES 1=正常;2=禁用;3=已删除
    public static final Integer CATEGORY_ENABLE = 1;
    public static final Integer CATEGORY_DISABLE = 2;
    public static final Integer CATEGORY_DELETED = 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;
    //WAREHOUSE_TYPE  1机构仓库2部门仓库
    public static final Integer WAREHOUSE_TYPE_TENANT = 1;
    public static final Integer WAREHOUSE_TYPE_DEPT = 2;
    //IS_DEFAULT  1=是;2=否
    public static final Integer IS_DEFAULT_YES = 1;
    public static final Integer IS_DEFAULT_NO = 2;
}