using HH.WCS.Mobox3.NFLZ.models; using SqlSugar; using System; using System.Collections.Generic; namespace HH.WCS.Mobox3.NFLZ { [SugarTable("TN_Container")] public class Container : BaseModel { /// /// ÈÝÆ÷±àÂë /// public string S_CODE { get; set; } /// /// ÀàÐÍ /// public string S_TYPE { get; set; } /// /// ÀàÐÍÖµ /// public int N_TYPE { get; set; } /// /// ¹æ¸ñ /// public string S_SPEC { get; set; } /// /// ×ÔÖØ /// public float F_WEIGHT { get; set; } /// /// ×î´óÈÝÁ¿ /// public float F_MAX_CAP { get; set; } /// /// ×î´óÖØÁ¿ /// public float F_MAX_WEIGHT { get; set; } public string C_IS_VIRTUAL { get; set; } = "N"; public string C_ENABLE { get; set; } = "Y"; /// /// Ã÷ϸÌõÊý /// public int N_DETAIL_COUNT { get; set; } public int N_B_STATE { get; set; } public string S_LOCK_OP_CODE { get; set; } public string S_LOCK_STATE { get; set; } public int N_LOCK_STATE { get; set; } public float F_GOOD_WEIGHT { get; set; } public float F_MAX_VOLUME { get; set; } public float F_GOOD_VOLUME { get; set; } public string C_FULL { get; set; } public int N_EMPTY_FULL { get; set; } public int N_MAX_CELL_NUM { get; set; } public int N_EMPTY_CELL_NUM { get; set; } public float F_LENGTH { get; set; } public float F_WIDTH { get; set; } public float F_HEIGHT { get; set; } public string S_POSITION { get; set; } public int N_GOOD_NUM { get; set; } public int N_ALLOC_CELL_NUM { get; set; } public string S_SOURCE { get; set; } public float F_ACT_WEIGHT { get; set; } /// /// ÂëÅÌʱºò±ê¼Ç /// public string S_SRC { get; internal set; } public string S_DEST { get; internal set; } [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToMany, nameof(CntrItemRel.S_CNTR_CODE), nameof(S_CODE))] public List CntrItemRels { get; set; } } }