72 lines
1.7 KiB
C#
72 lines
1.7 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_subject_basedata", "选科基础数据")]
|
|
public class BusSubjectBaseData : DEntitySortBase
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 适用省份Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "适用省份Id")]
|
|
public int ApplyType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年份
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "年份")]
|
|
[MaxLength(100)]
|
|
public string Years { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 高校省份
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "高校省份")]
|
|
[MaxLength(100)]
|
|
public string LocalProvince { get; set; }
|
|
|
|
[SugarColumn(ColumnDescription = "学历类别")]
|
|
public int Type { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 院校名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "院校名称")]
|
|
[MaxLength(200)]
|
|
public string UniversityName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 专业名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "专业名称")]
|
|
[MaxLength(150)]
|
|
public string MajorName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 选科要求
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "选科要求")]
|
|
[MaxLength(200)]
|
|
public string Requirements { get; set; }
|
|
|
|
|
|
}
|
|
}
|