using SqlSugar; namespace NewPdaSqlServer.entity; /// /// ²Ëµ¥Î¬»¤±í /// [SugarTable("MES_SIMPLE")] public class MesSimple { /// /// ×ÔÔöÁÐÖ÷¼ü /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// ÊÇ·ñΪ¸ù½Úµã (0±íʾΪ¸ù½Úµã) /// [SugarColumn(ColumnName = "is_top")] public int? IsTop { get; set; } /// /// ¸¸½Úµãid /// [SugarColumn(ColumnName = "fid")] public long? Fid { get; set; } /// /// Ãû³Æ /// [SugarColumn(ColumnName = "title")] public string? Title { get; set; } /// /// Ó¢ÎÄÃû /// [SugarColumn(ColumnName = "field")] public string? Field { get; set; } /// /// µØÖ· /// [SugarColumn(ColumnName = "href")] public string? Href { get; set; } /// /// ½ÚµãÊÇ·ñ³õʼչ¿ª (0Ϊ²»Õ¹¿ª£¬1Ϊչ¿ª) /// [SugarColumn(ColumnName = "spread")] public int? Spread { get; set; } /// /// ½ÚµãÊÇ·ñΪչʾ (0Ϊչʾ£¬1Ϊ²»Õ¹Ê¾) /// [SugarColumn(ColumnName = "disabled")] public int? Disabled { get; set; } /// /// ÂÖ²¥Ê±¼ä(Ãë) /// [SugarColumn(ColumnName = "lbtime")] public int? Lbtime { get; set; } }