using System.Collections.Generic; using SqlSugar; namespace HH.WCS.Mobox3.RiDong.models; /// /// ��λ���� /// [SugarTable("TN_Loc_Container")] public class LocCntrRel : BaseModel { /// /// ��λ���� /// [SugarColumn(IsPrimaryKey = true)] public string S_LOC_CODE { get; set; } /// /// �������� /// public string S_CNTR_CODE { get; set; } /// /// ������λ��ϸ���� /// [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToMany, nameof(S_CNTR_CODE))] public List CntrItemRels { get; set; } /// /// ���������� /// [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToOne, nameof(S_CNTR_CODE))] public Container Container { get; set; } }