using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.Minsun { /// /// 实体:WMS_SRMSNList /// [Description("Primary:Id")] [Serializable] [SugarTable("WMS_SRMSNList")] public class WMS_SRMSNList : iDBEntity { #region 构造函数 /// /// 实体:WMS_SRMSNList /// public WMS_SRMSNList() {} #endregion #region 公共属性 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// / /// public string BILLCODE { get; set; } /// /// / /// public string BILLLINE { get; set; } /// /// / /// public string SOURCETYPE { get; set; } /// /// / /// public string MATERIALCODE { get; set; } /// /// / /// public string DeliveryNo { get; set; } /// /// 小 /// public string SmallBarcode { get; set; } /// /// / /// public string BigBarcode { get; set; } /// /// / /// public string OuterBarcode { get; set; } /// /// / /// public decimal IncludeQty { get; set; } /// /// / /// public decimal SmallIncludeCount { get; set; } /// /// / /// public DateTime production_date { get; set; } = DateTime.MinValue; /// /// /// public DateTime LastModificationTime { get; set; } = DateTime.MinValue; /// /// /// public long LastModifierUserId { get; set; } /// /// /// public DateTime CreationTime { get; set; } = DateTime.MinValue; /// /// /// public long CreatorUserId { 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 }