From 01cc5773457f68274ef1b2d9d9daca8983761828 Mon Sep 17 00:00:00 2001 From: 杨前锦 <1010338399@qq.com> Date: 星期四, 05 六月 2025 17:33:03 +0800 Subject: [PATCH] 佳通bug优化 --- HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/models/Zone.cs | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 48 insertions(+), 0 deletions(-) diff --git a/HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/models/Zone.cs b/HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/models/Zone.cs new file mode 100644 index 0000000..8e8a0bf --- /dev/null +++ b/HH.WCS.Mobox3/HH.WCS.Mobox3.FJJT/models/Zone.cs @@ -0,0 +1,48 @@ +using HH.WCS.Mobox3.FJJT.models; +using SqlSugar; +using System; +using System.Collections.Generic; + +namespace HH.WCS.Mobox3.FJJT { + + [SugarTable("TN_Zone")] + public class Zone : BaseModel + { + + + public string S_NAME { get; set; } + public string S_NOTE { get; set; } + public string S_WH_CODE { get; set; }=util.Settings.WHCode; + public int N_EMPTY_MIN { get; set; } + public int N_EMPTY_MAX { get; set; } + + public string S_CODE { get; set; } + public string S_AREA_CODE { get; set; } + public string S_LOC_RULE { get; set; } + public string S_ZONE_CLS_CODE { get; set; } + public int N_AVAILABLE_IN { get; set; } + public int N_TYPE { get; set; } + public string S_TYPE { get; set; } + public string S_ITEM_CODE { get; set; } + public string S_ITEM_NAME { get; set; } + public string S_BATCH_NO { get; set; } + public string S_ITEM_CATEGORY { get; set; } + public string S_OWNER_CODE { get; set; } + public string S_SUPPLIER_CODE { get; set; } + public int N_CONNECT_TYPE { get; set; } + public string S_CONNECT_TYPE { get; set; } + public int N_LOCK_STATE { get; set; } + public string S_LOCK_STATE { get; set; } + public string S_OWNER_NAME { get; set; } + public string S_SUPPLIER_NAME { get; set; } + public int N_STORE_MAX { get; set; } + public string S_STATE_PRE { get; set; } + + public string C_IS_AREA { get; set; } + public string S_GROUP { get; set; } + + [SugarColumn(IsIgnore = true)] + [Navigate(NavigateType.OneToMany, nameof(S_CODE), nameof(ZoneLoc.S_LOC_CODE))] + public List<ZoneLoc> ZoneLocs { get; set; } + } +} -- Gitblit v1.9.1