hudong
2025-06-24 fddd1f3d621a1947d698652c72b6a16cc3f6ee2d
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; }
    }
}