NewGaoKaoApi/New_College.Model/Models/D_MajorCategory.cs

31 lines
738 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_MajorCategory : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(IsNullable = true)]
public string TradeNumber { get; set; }
/// <summary>
///
/// </summary>
[SugarColumn(IsNullable = true)]
public string TradeName { get; set; }
/// <summary>
/// 本科/专科大类 1本科 2 专科
/// </summary>
[SugarColumn(IsNullable = true)]
public int Type { get; set; }
}
}