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 decimal 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 }