From fd8f0ef430e178f80695f72e0daee894a9c7cdf2 Mon Sep 17 00:00:00 2001 From: "hongxi.lian" Date: Tue, 10 Oct 2023 14:02:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E5=85=B8=E7=B1=BB=E5=9E=8B=E6=9E=9A?= =?UTF-8?q?=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/wms/enums/DictTypeConstants.java | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 win-module-wms/win-module-wms-api/src/main/java/com/win/module/wms/enums/DictTypeConstants.java diff --git a/win-module-wms/win-module-wms-api/src/main/java/com/win/module/wms/enums/DictTypeConstants.java b/win-module-wms/win-module-wms-api/src/main/java/com/win/module/wms/enums/DictTypeConstants.java new file mode 100644 index 00000000..9f145608 --- /dev/null +++ b/win-module-wms/win-module-wms-api/src/main/java/com/win/module/wms/enums/DictTypeConstants.java @@ -0,0 +1,63 @@ +package com.win.module.wms.enums; + +/** + * System 字典类型的枚举类 + * + * @author 闻荫源码 + */ +public interface DictTypeConstants { + + String ITEM_STATUS = "item_status";// 物品状态 + + String UOM = "uom";// 计量单位 + + String TRUE_FALSE = "true_false";// 是否 + + String ABC_CLASS = "abc_class";// ABC类 + + String ITEM_TYPE = "item_type";// 物品类型 + + String ITEM_CATEGORY = "Item_category";// 物品种类 + + String ITEM_GROUP = "item_group";// 物品分组 + + String ITEM_COLOR = "item_color";// 物品颜色 + + String ITEM_CONFIGURATION = "item_configuration";// 物品配置 + + String EQ_LEVEL = "eq_level";// 质量等级 + + String PACK_UNIT = "pack_unit";//包装单位 + + String CURRENCY = "currency";//货币 + + String SUPPLIER_TYPE = "supplier_type";//供应商类型 + + String SETTLEMENT_TYPE = "settlement_type";//结算类型 + + String CUSTOMER_TYPE = "customer_type";//客户类型 + + String WAREHOUSE_TYPE = "warehouse_type";//仓库类型 + + String DOCK_TYPE = "dock_type";//月台类型 + + String AREA_TYPE = "area_type";//库区类型 + + String ERP_LOCATION = "erp_location";//ERP库位 + + String LOCATION_TYPE = "location_type";//库位类型 + + String WORKSHOP_TYPE = "workshop_type";//车间类型 + + String PRODUCTION_LINE_TYPE = "production_line_type";//生产线类型 + + String WORK_STATION_TYPE = "work_station_type";//工位类型 + + String PROCESS_TYPE = "process_type";//工序类型 + + + + + + +}