using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BILL_INVENTORYREPORT")] public partial class BILL_InventoryReport { public BILL_InventoryReport() { } /// /// Desc:容器行主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string F_no { get; set; } /// /// Desc:仓库 /// Default: /// Nullable:False /// public string F_warehouse { get; set; } /// /// Desc:行数 /// Default: /// Nullable:True /// public int F_totalOrderlines { get; set; } /// /// Desc:单据类型 /// Default: /// Nullable:True /// public int F_adjustType { get; set; } /// /// Desc:盘点状态 /// Default: /// Nullable:True /// public int F_checkStatus { get; set; } /// /// Desc:盘点时间 /// Default: /// Nullable:False /// //public DateTime F_checkTime { get; set; } /// /// Desc:备注 /// Default: /// Nullable:False /// public string F_memo { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime F_addTime { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public string F_addUserNo { get; set; } /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? F_editTime { get; set; } /// /// Desc:修改人 /// Default: /// Nullable:True /// public string F_editUserNo { get; set; } } }