using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// 实体:mes_WhLotCodeQtyInfo /// [Serializable] [SugarTable("mes_WhLotCodeQtyInfo")] public class mes_WhLotCodeQtyInfo : iViewEntity { #region 构造函数 /// /// 实体:mes_WhLotCodeQtyInfo /// public mes_WhLotCodeQtyInfo() {} #endregion #region 公共属性 /// /// /// [SugarColumn(IsPrimaryKey = true)] public string ID { get; set; } /// /// /// public string ItemCode { get; set; } /// /// /// public string Bin { get; set; } /// /// /// public string WhCode { get; set; } /// /// /// public string WhName { get; set; } /// /// /// public double StoreQty { get; set; } /// /// /// public string LotCode { get; set; } /// /// /// public string Description { get; set; } /// /// /// public string SapCode { 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 }