using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Core { /// /// /// [SugarTable("BILL_ENTRYORDERLINEDETAIL")] public partial class BILL_ENTRYORDERLINEDETAIL { public BILL_ENTRYORDERLINEDETAIL() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string F_rowNo { get; set; } /// /// Desc:出库单号 /// Default: /// Nullable:True /// public string F_pNo { get; set; } /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string F_matNo { 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: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:批次 /// Default: /// Nullable:False /// public string F_batchNo { get; set; } /// /// Desc:物料类型 /// Default: /// Nullable:False /// public int F_matType { get; set; } /// /// Desc:物料类型 /// Default: /// Nullable:False /// public string F_matName { get; set; } /// /// Desc:UID /// Default: /// Nullable:False /// public string F_UID { get; set; } } }