using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// ʵÌ壺mes_MOPickList /// [Serializable] [SugarTable("mes_MOPickList")] public class mes_MOPickList : iViewEntity { #region ¹¹Ô캯Êý /// /// ʵÌ壺mes_MOPickList /// public mes_MOPickList() {} #endregion #region ¹«¹²ÊôÐÔ /// /// /// public long SupplyOrg { get; set; } /// /// /// public int DocLineNO { get; set; } /// /// /// public long MoId { get; set; } /// /// /// public string MoDocNo { get; set; } /// /// /// public long ItemMaster { get; set; } /// /// /// public string Code { get; set; } /// /// /// public decimal ActualReqQty { get; set; } /// /// /// public decimal IssuedQty { get; set; } /// /// /// public decimal IssueNotDeliverQty { get; set; } /// /// /// public int IssueStyle { get; set; } /// /// /// public string IssueStyleName { get; set; } /// /// /// public long WhId { get; set; } /// /// /// public string WhCode { get; set; } /// /// /// public string WhName { get; set; } /// /// /// public long BinId { get; set; } /// /// /// public string BinCode { get; set; } /// /// /// public string BinName { get; set; } /// /// /// public string SuggestedBatch { get; set; } /// /// /// public string InventoryInfoCode { get; set; } /// /// /// public string PictureCode { get; set; } /// /// /// public string Remark { get; set; } /// /// ÏúÊÛ¶©µ¥±¸×¢ /// public string SoRemark { get; set; } /// /// Éú²ú¶©µ¥±¸×¢ /// public string MoRemark { get; set; } /// /// ²úÆ·ÐͺŠ/// public string ItemModel { get; set; } /// /// SapÁÏ /// public string SapCode { get; set; } /// /// ¿Í»§ /// public string Customer { get; set; } /// /// ÐèÇó·ÖÀà /// public string DemandCode { get; set; } /// /// /// public DateTime CreatedOn { get; set; } = DateTime.MinValue; /// /// /// public DateTime ModifiedOn { get; set; } = DateTime.MinValue; #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 }