79 lines
1.9 KiB
C#
79 lines
1.9 KiB
C#
|
||
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
|
||
{
|
||
/// <summary>
|
||
/// 高校基础信息
|
||
/// </summary>
|
||
[SugarTable("bus_universitybase_info", "高校基础信息")]
|
||
public class BusUniversityInfo : DEntitySortBase
|
||
{
|
||
|
||
/// <summary>
|
||
/// 高校名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "高校名称")]
|
||
[Required, MaxLength(200)]
|
||
public string Name { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// LOGO
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "LOGO")]
|
||
[Required, MaxLength(300)]
|
||
public string Logo { get; set; }
|
||
/// <summary>
|
||
/// 省份Id
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "省份Id")]
|
||
public long ProvinceId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 教育主管部门Id
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "教育主管部门Id")]
|
||
public long ZgManageId { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 办学层次
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "办学层次")]
|
||
public int Levels { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 办学特征(985,211)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "办学特征")]
|
||
[Required, MaxLength(200)]
|
||
public string Specific { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 院校类型(综合,财经)
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "院校类型")]
|
||
public int UniversityType { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 排名
|
||
/// </summary>
|
||
[SugarColumn(ColumnDescription = "排名")]
|
||
public int Rank { get; set; }
|
||
|
||
|
||
|
||
}
|
||
}
|