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 PickListId { get; set; } /// /// /// 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 double ActualReqQty { get; set; } /// /// /// public double IssuedQty { get; set; } /// /// /// public double IssueNotDeliverQty { get; set; } /// /// /// public int IssueStyle { get; set; } /// /// /// public string IssueStyleName { get; set; } /// /// /// public string IssueUOM { 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 DateTime CreatedOn { get; set; } = DateTime.MinValue; /// /// /// public DateTime ModifiedOn { get; set; } = DateTime.MinValue; /// /// /// 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; } /// /// /// public string SapCode { get; set; } /// /// /// public string Customer { get; set; } /// /// /// public string DemandCode { 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 }