using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 载具台账主表 /// public partial class WmsCarryH { /// /// 是否签收 /// [SugarColumn(IsIgnore = true)] public int is_sign { get; set; } /// /// 供应商 /// [SugarColumn(IsIgnore = true)] public string supplier_id { get; set; } /// /// 入库时间 /// [SugarColumn(IsIgnore = true)] public DateTime instock_time { get; set; } }