using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; using Tiger.Model; namespace Tiger.Model.MES.Yada { /// /// 实体:mes_Mo /// [Serializable] [SugarTable("mes_Mo")] public class mes_Mo : iViewEntity { #region 构造函数 /// /// 实体:mes_Mo /// public mes_Mo() {} #endregion #region 公共属性 /// /// /// public long Org { get; set; } /// /// /// public string DocTypeCode { get; set; } /// /// /// public string DocTypeName { get; set; } /// /// /// public string DocNo { get; set; } /// /// /// public double ProductQty { get; set; } /// /// /// public string ProductUOM { get; set; } /// /// /// public string CustomerName { get; set; } /// /// /// public string CustomerCode { get; set; } /// /// /// public DateTime StartDate { get; set; } = DateTime.MinValue; /// /// /// public DateTime CompleteDate { get; set; } = DateTime.MinValue; /// /// /// public string CheckDate { get; set; } /// /// /// public DateTime CreatedOn { get; set; } = DateTime.MinValue; /// /// /// public DateTime ModifiedOn { get; set; } = DateTime.MinValue; /// /// /// public long ItemMaster { get; set; } /// /// /// public string DepartmentName { get; set; } /// /// /// public long Department { get; set; } /// /// /// public string SrcDoc_SrcDocNo { get; set; } /// /// /// public string MoSerial { get; set; } /// /// /// public string InBarHead { get; set; } /// /// /// public string OutBarHead { get; set; } /// /// /// public string SoLineMemo { get; set; } /// /// /// public string ProgramDescription { get; set; } /// /// /// public string Contracts { get; set; } /// /// /// public int BusinessType { 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 }