From ba45c490755fafe369038b3b1901096a83bdceb7 Mon Sep 17 00:00:00 2001 From: luqingyang <lqy5492@163.com> Date: 星期五, 03 十一月 2023 14:32:24 +0800 Subject: [PATCH] fix:代码调整 --- consum-base/src/main/java/com/consum/base/Constants.java | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/consum-base/src/main/java/com/consum/base/Constants.java b/consum-base/src/main/java/com/consum/base/Constants.java index a67098e..93fead0 100644 --- a/consum-base/src/main/java/com/consum/base/Constants.java +++ b/consum-base/src/main/java/com/consum/base/Constants.java @@ -42,4 +42,28 @@ // 鏄惁瀹屾垚 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=姝e父锛�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; + + } -- Gitblit v1.9.1