using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Core { /// /// /// [SugarTable("BILL_STOCKOUTLINEDETAIL")] public partial class BILL_STOCKOUTLINEDETAIL { public BILL_STOCKOUTLINEDETAIL() { } /// /// 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:True /// public string F_matNo { get; set; } /// /// Desc:物料类型 /// Default: /// Nullable:False /// public int F_matType { get; set; } /// /// Desc:物料名称 /// Default: /// Nullable:False /// public string F_matName { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string F_trayNo { get; set; } /// /// Desc:箱号 /// Default: /// Nullable:False /// public string F_boxNo { get; set; } /// /// Desc:货位 /// Default: /// Nullable:False /// public string F_locationNo { 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 int F_quantity { get; set; } /// /// Desc:UID /// Default: /// Nullable:True /// public string F_uid { get; set; } /// /// Desc:项目号 /// Default: /// Nullable:True /// public string F_projectNo { get; set; } } }