31 lines
749 B
C#
31 lines
749 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 专科|3职业本科
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Type { get; set; }
|
|
|
|
}
|
|
}
|