using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 高校基础信息 /// [SugarTable("bus_universitybase_info", "高校基础信息")] public class BusUniversityInfo : DEntitySortBase { /// /// 高校名称 /// [SugarColumn(ColumnDescription = "高校名称")] [Required, MaxLength(200)] public string Name { get; set; } /// /// LOGO /// [SugarColumn(ColumnDescription = "LOGO")] [Required, MaxLength(300)] public string Logo { get; set; } /// /// 省份Id /// [SugarColumn(ColumnDescription = "省份Id")] public long ProvinceId { get; set; } /// /// 教育主管部门Id /// [SugarColumn(ColumnDescription = "教育主管部门Id")] public long ZgManageId { get; set; } /// /// 办学层次 /// [SugarColumn(ColumnDescription = "办学层次")] public int Levels { get; set; } /// /// 办学特征(985,211) /// [SugarColumn(ColumnDescription = "办学特征")] [Required, MaxLength(200)] public string Specific { get; set; } /// /// 院校类型(综合,财经) /// [SugarColumn(ColumnDescription = "院校类型")] public int UniversityType { get; set; } /// /// 排名 /// [SugarColumn(ColumnDescription = "排名")] public int Rank { get; set; } } }