using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.Minsun { /// /// 实体:WMS_RECEIPT_D /// [Description("Primary:Id")] [Serializable] [SugarTable("WMS_RECEIPT_D")] public class WMS_RECEIPT_D : iDBEntity { #region 构造函数 /// /// 实体:WMS_RECEIPT_D /// public WMS_RECEIPT_D() {} #endregion #region 公共属性 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// /// public long BILLID { get; set; } /// /// /// public string BILLCODE { get; set; } /// /// /// public int BILLLINE { get; set; } /// /// /// public int LINESTATUS { get; set; } /// /// /// public string MATERIALCODE { get; set; } /// /// /// public string UNITCODE { get; set; } /// /// /// public decimal QTY { get; set; } /// /// /// public decimal QTYPASS { get; set; } /// /// /// public decimal INSTOCKQTY { get; set; } /// /// /// public decimal RETURNQTY { get; set; } /// /// /// public int PRINTQTY { get; set; } /// /// /// public bool ISGIVEAWAY { get; set; } /// /// /// public decimal PRICE { get; set; } /// /// /// public decimal TAXPRICE { get; set; } /// /// /// public decimal AMOUNT { get; set; } /// /// /// public decimal ALLAMOUNT { get; set; } /// /// /// public string SOURCECODE { get; set; } /// /// /// public int SOURCETYPE { get; set; } /// /// /// public int SOURCELINE { get; set; } /// /// /// public int ERPRECEIPTFLAG { get; set; } /// /// /// public int ERPINSTOCKFLAG { get; set; } /// /// /// public decimal SCANQTY { get; set; } /// /// /// public string REMARK { get; set; } /// /// /// public DateTime LastModificationTime { get; set; } = DateTime.MinValue; /// /// /// public long LastModifierUserId { get; set; } /// /// /// public DateTime CreationTime { get; set; } = DateTime.MinValue; /// /// /// public long CreatorUserId { get; set; } /// /// /// public string ERP_BILL_CODE { get; set; } /// /// /// public string PONO { get; set; } /// /// /// public int? POLINE { get; set; } /// /// /// public string WAREHOUSECODE { get; set; } = ""; #endregion #region 虚拟属性 /*例子 [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ #endregion #region 枚举变量 /*例子 public enum FieldNames { [Description("枚举描述0")] Enum0, [Description("枚举描述1")] Enum1, } */ #endregion #region 公共方法 #endregion }//endClass }