using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_MajorClass : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
///
/// 专业类型名称
///
[SugarColumn(IsNullable = true)]
public string Categoryname { get; set; }
///
/// 专业一级分类id
///
[SugarColumn(IsNullable = true)]
public int TradeId { get; set; }
}
}