using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.Minsun { /// /// 实体:WMS_BARCODE_LOG /// [Description("Primary:Id")] [Serializable] [SugarTable("WMS_BARCODE_LOG")] public class WMS_BARCODE_LOG : iDBEntity { #region 构造函数 /// /// 实体:WMS_BARCODE_LOG /// public WMS_BARCODE_LOG() {} #endregion #region 公共属性 /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// /// public int INOUTTYPE { get; set; } /// /// /// public int SOURCEBILLTYPE { get; set; } /// /// /// public int? TARGETBILLTYPE { get; set; } /// /// /// public string BILLCODE { get; set; } /// /// /// public string BARCODE { get; set; } /// /// /// public string BARCODEREMARK { get; set; } /// /// /// public int BARCODETYPE { get; set; } /// /// /// public int BOXTYPE { get; set; } /// /// /// public string PARENTBOXBARCODE { get; set; } /// /// /// public string SOURCEBARCODE { get; set; } /// /// /// public string LOTNO { get; set; } /// /// /// public DateTime? DATECODE { get; set; } = DateTime.MinValue; /// /// /// public string MATERIALCODE { get; set; } /// /// /// public string WAREHOUSECODE { get; set; } /// /// /// public string LOCATIONCODE { get; set; } /// /// /// public int SOURCETYPE { get; set; } /// /// /// public string SOURCECODE { get; set; } /// /// /// public int? SOURCEDETAILLINE { get; set; } /// /// /// public decimal INITIALQTY { get; set; } /// /// /// public decimal QTY { get; set; } /// /// /// public decimal LASTQTY { get; set; } /// /// /// public decimal PRICE { get; set; } /// /// /// public decimal TAXPRICE { get; set; } /// /// /// public decimal AMOUNT { get; set; } /// /// /// public decimal ALLAMOUNT { get; set; } /// /// /// public string CARTONNO { get; set; } /// /// /// public string SCANMAINID { get; set; } /// /// /// public string SCANDETAILID { 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; } #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 }