using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BILL_STOCKOUTLINE")] public partial class BILL_STOCKOUTLINE { public BILL_STOCKOUTLINE() { } /// /// Desc:容器行主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public int F_rowNo { get; set; } /// /// Desc:入库单号 /// Default: /// Nullable:False /// public string F_pNo { get; set; } /// /// Desc:仓库 /// Default: /// Nullable:False /// public string F_warehouseNo { get; set; } /// /// Desc:行号 /// Default: /// Nullable:True /// public int F_orderLineNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string F_matNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:False /// public string F_matName { get; set; } /// /// Desc:物料类型 /// Default: /// Nullable:False /// public int F_matType { get; set; } /// /// Desc:计划数量 /// Default: /// Nullable:True /// public int F_planQty { get; set; } /// /// Desc:实际数量 /// Default: /// Nullable:False /// public int F_actualQty { get; set; } /// /// 需求数量 /// [SugarColumn(IsIgnore = true)] public int F_neddQty { get { return F_planQty - F_actualQty; } } /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime F_addTime { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public string F_addUserNo { get; set; } /// /// Desc:修改时间 /// Default: /// Nullable:False /// public DateTime? F_editTime { get; set; } /// /// Desc:修改人 /// Default: /// Nullable:False /// public string F_editUserNo { get; set; } /// /// Desc:批次 /// Default: /// Nullable:True /// public string F_batchNo { get; set; } } }