using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; namespace Tiger.Model { /// /// ʵÌ壺AQLÅж¨±ê×¼ /// [Description("Primary:ID")] [DisplayName("AQLÅж¨±ê×¼")] [Serializable] [SugarTable("QMS_AQL_STD")] public class QMS_AQL_STD : DbEntityWithAuth { #region ¹¹Ô캯Êý /// /// ʵÌ壺AQLÅж¨±ê×¼ /// public QMS_AQL_STD() {} #endregion #region ¹«¹²ÊôÐÔ /// /// Ñù±¾Á¿×ÖÂë /// [DisplayName("Ñù±¾Á¿×ÖÂë")] public string AQL_CODE { get; set; } /// /// ½ÓÊÜÖÊÁ¿ÏÞ /// [DisplayName("½ÓÊÜÖÊÁ¿ÏÞ")] public string AQL_VALUE { get; set; } /// /// Ñù±¾Á¿ /// [DisplayName("Ñù±¾Á¿")] public double AQL_QTY { get; set; } /// /// Ñϸñ¶È(0NormalÕý³£|1Tightened¼ÓÑÏ|2Reduced·Å¿í) /// [DisplayName("Ñϸñ¶È(0NormalÕý³£|1Tightened¼ÓÑÏ|2Reduced·Å¿í)")] public int STRICTNESS { get; set; } /// /// ÔÊÊÕÊýÁ¿ /// [DisplayName("ÔÊÊÕÊýÁ¿")] public double AC_QTY { get; set; } /// /// ¾ÜÊÕÊýÁ¿ /// [DisplayName("¾ÜÊÕÊýÁ¿")] public double RE_QTY { get; set; } /// /// ÊÇ·ñÆôÓÃ(Y/N) /// [DisplayName("ÊÇ·ñÆôÓÃ(Y/N)")] public string IS_ACTIVE { get; set; } /// /// ±¸×¢ /// [DisplayName("±¸×¢")] public string REMARK { get; set; } #endregion #region ÐéÄâÊôÐÔ /*Àý×Ó [SugarColumn(IsIgnore = true)] public string FieldName { get; set; } */ #endregion #region Íâ¼üÊôÐÔ /*Àý×Ó //Ò»¶ÔÒ»Íâ¼üµ¼º½ [Navigate(NavigateType.OneToOne, nameof(ClassAId))]//Ò»¶ÔÒ» ClassAIdÊÇQMS_AQL_STDÀàÀïÃæµÄÍâ¼üID×Ö¶Î public ClassA ClassA { get; set; } //×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull //Ò»¶Ô¶àÍâ¼üµ¼º½ [Navigate(NavigateType.OneToMany, nameof(ClassA.QMS_AQL_STDId))]//ClassA±íÖеÄQMS_AQL_STDId public List ClassAList { get; set; }//×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull //¶à¶Ô¶àÍâ¼üµ¼º½ [Navigate(typeof(MappingClass), nameof(MappingClass.QMS_AQL_STDId), nameof(MappingClass.ClassAId))]//×¢Òâ˳Ðò public List ClassAList { get; set; } //×¢Òâ½ûÖ¹ÊÖ¶¯¸³Öµ£¬Ö»ÄÜÊÇnull */ #endregion #region ö¾Ù±äÁ¿ /*Àý×Ó public enum FieldNames { [Description("ö¾ÙÃèÊö0")] Enum0, [Description("ö¾ÙÃèÊö1")] Enum1, } */ /// /// ö¾Ù£ºÑϸñ¶È(0NormalÕý³£|1Tightened¼ÓÑÏ|2Reduced·Å¿í) /// public enum STRICTNESSs { [Description("Õý³£")] Normal = 0, [Description("¼ÓÑÏ")] Tightened = 1, [Description("·Å¿í")] Reduced = 2, } #endregion #region ¹«¹²·½·¨ #endregion }//endClass }