From 511d159574c3de94d8d3e43da9f5485f764fa7c8 Mon Sep 17 00:00:00 2001 From: hudong <Administrator@PC-20250329JZUF> Date: 星期四, 19 六月 2025 17:22:35 +0800 Subject: [PATCH] 平高项目 生成出库单逻辑修改 --- models/Zone.cs | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/models/Zone.cs b/models/Zone.cs index a6727a2..6fb6a0d 100644 --- a/models/Zone.cs +++ b/models/Zone.cs @@ -3,16 +3,17 @@ using System; using System.Collections.Generic; -namespace HH.WCS.Mobox3.pinggao { +namespace HH.WCS.Mobox3.pinggao +{ [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 string S_WH_CODE { get; set; } = util.Settings.WHCode; public int N_EMPTY_MIN { get; set; } public int N_EMPTY_MAX { get; set; } [SugarColumn(IsPrimaryKey = true)] @@ -37,7 +38,7 @@ 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; } @@ -45,4 +46,5 @@ [Navigate(NavigateType.OneToMany, nameof(S_CODE), nameof(ZoneLoc.S_LOC_CODE))] public List<ZoneLoc> ZoneLocs { get; set; } } + } -- Gitblit v1.9.1