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; }
///
///
///
[SugarColumn(IsNullable = true)]
public string TradeNumber { get; set; }
///
///
///
[SugarColumn(IsNullable = true)]
public string TradeName { get; set; }
///
/// 本科/专科大类 1本科 2 专科|3职业本科
///
[SugarColumn(IsNullable = true)]
public int Type { get; set; }
}
}