using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// ʵÌ壺mes_WhLotCodeQtyInfo /// [Description("Primary:LotCode")] [Serializable] [SugarTable("mes_WhLotCodeQtyInfo")] public class mes_WhLotCodeQtyInfo : iViewEntity { #region ¹¹Ô캯Êý /// /// ʵÌ壺mes_WhLotCodeQtyInfo /// public mes_WhLotCodeQtyInfo() {} #endregion #region ¹«¹²ÊôÐÔ /// /// /// public string ItemCode { get; set; } /// /// /// public string Bin { get; set; } /// /// /// public string WhCode { get; set; } /// /// /// public string WhName { get; set; } /// /// /// public decimal StoreQty { get; set; } /// /// /// [SugarColumn(IsPrimaryKey = true)] 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 }