using HH.WCS.Mobox3.YNJT_PT.models; using SqlSugar; using System; using System.Collections.Generic; namespace HH.WCS.Mobox3.YNJT_PT { [SugarTable("TN_Container")] public class Container : BaseModel { [SugarColumn(IsPrimaryKey = true)] public string S_CODE { get; set; } public string S_TYPE { get; set; } public string S_SPEC { get; set; } public int N_DETAIL_COUNT { get; set; } public int N_B_STATE { get; set; } [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToOne, nameof(S_CODE))] public CntrItemRel CntrItemRel { get; set; } } }