using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; namespace Tiger.Model { /// /// ʵÌ壺¹¤µ¥Â·ÏßÁ¬Ïß /// [Description("Primary:ID")] [DisplayName("¹¤µ¥Â·ÏßÁ¬Ïß")] [Serializable] [SugarTable("MES_WO_EDGE")] public class MES_WO_EDGE : DbEntityWithAuth { #region ¹¹Ô캯Êý /// /// ʵÌ壺¹¤µ¥Â·ÏßÁ¬Ïß /// public MES_WO_EDGE() {} #endregion #region ¹«¹²ÊôÐÔ /// /// ¹ØÁª¹¤µ¥ºÅ /// [DisplayName("¹ØÁª¹¤µ¥ºÅ")] public string WORK_ORDER { get; set; } /// /// ²úÆ·±àÂë /// [DisplayName("²úÆ·±àÂë")] public string PROD_CODE { get; set; } /// /// ¿Í»§±àÂë /// [DisplayName("¿Í»§±àÂë")] public string CUST_CODE { get; set; } /// /// Á¬ÏßÃû³Æ /// [DisplayName("Á¬ÏßÃû³Æ")] public string EDGE_NAME { get; set; } /// /// ¹¤ÒÕ·ÏßID /// [DisplayName("¹¤ÒÕ·ÏßID")] public string ROT_ID { get; set; } /// /// Ô´½Úµã±àÂë /// [DisplayName("Ô´½Úµã±àÂë")] public string SRC_NODE { get; set; } /// /// Ä¿±ê½Úµã±àÂë /// [DisplayName("Ä¿±ê½Úµã±àÂë")] public string TGT_NODE { get; set; } /// /// »æÍ¼ÊôÐÔ£ºtype /// [DisplayName("»æÍ¼ÊôÐÔ£ºtype")] public string GPH_TYPE { get; set; } /// /// »æÍ¼ÊôÐÔ£ºstartPoint: x /// [DisplayName("»æÍ¼ÊôÐÔ£ºstartPoint: x")] public double GPH_SRC_X { get; set; } /// /// »æÍ¼ÊôÐÔ£ºstartPoint: y /// [DisplayName("»æÍ¼ÊôÐÔ£ºstartPoint: y")] public double GPH_SRC_Y { get; set; } /// /// »æÍ¼ÊôÐÔ£ºendPoint: x /// [DisplayName("»æÍ¼ÊôÐÔ£ºendPoint: x")] public double GPH_TGT_X { get; set; } /// /// »æÍ¼ÊôÐÔ£ºendPoint: y /// [DisplayName("»æÍ¼ÊôÐÔ£ºendPoint: y")] public double GPH_TGT_Y { get; set; } /// /// »æÍ¼ÊôÐÔ£ºproperties /// [DisplayName("»æÍ¼ÊôÐÔ£ºproperties")] public string GPH_PROP { get; set; } /// /// »æÍ¼ÊôÐÔ£ºpointsList /// [DisplayName("»æÍ¼ÊôÐÔ£ºpointsList")] public string GPH_POTS { get; set; } /// /// ÉèÖÃÖµ1 /// [DisplayName("ÉèÖÃÖµ1")] public string OPTION_1 { get; set; } /// /// ÉèÖÃÖµ2 /// [DisplayName("ÉèÖÃÖµ2")] public string OPTION_2 { get; set; } /// /// ÉèÖÃÖµ3 /// [DisplayName("ÉèÖÃÖµ3")] public string OPTION_3 { get; set; } /// /// ÉèÖÃÖµ4 /// [DisplayName("ÉèÖÃÖµ4")] public string OPTION_4 { get; set; } /// /// ÉèÖÃÖµ5 /// [DisplayName("ÉèÖÃÖµ5")] public string OPTION_5 { get; set; } /// /// ±¸×¢ /// [DisplayName("±¸×¢")] public string REMARK { get; set; } #endregion #region ÐéÄâÊôÐÔ /*Àý×Ó [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ /// /// ±ß /// [SugarColumn(IsIgnore = true)] public edge edge { get; set; } #endregion #region Íâ¼üÊôÐÔ /*Àý×Ó //Ò»¶ÔÒ»Íâ¼üµ¼º½ [Navigate(NavigateType.OneToOne, nameof(ClassAId))]//Ò»¶ÔÒ» ClassAIdÊÇMES_WO_EDGEÀàÀïÃæµÄÍâ¼üID×Ö¶Î public ClassA ClassA { get; set; } //×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull //Ò»¶Ô¶àÍâ¼üµ¼º½ [Navigate(NavigateType.OneToMany, nameof(ClassA.MES_WO_EDGEId))]//ClassA±íÖеÄMES_WO_EDGEId public List ClassAList { get; set; }//×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull //¶à¶Ô¶àÍâ¼üµ¼º½ [Navigate(typeof(MappingClass), nameof(MappingClass.MES_WO_EDGEId), nameof(MappingClass.ClassAId))]//×¢Òâ˳Ðò public List ClassAList { get; set; } //×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull */ #endregion #region ö¾Ù±äÁ¿ /*Àý×Ó public enum FieldNames { [Description("ö¾ÙÃèÊö0")] Enum0, [Description("ö¾ÙÃèÊö1")] Enum1, } */ #endregion #region ¹«¹²·½·¨ #endregion }//endClass }