29 lines
675 B
C#
29 lines
675 B
C#
using SqlSugar;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace New_College.Model.Models
|
||
{
|
||
public class D_MajorMapUniversity : EntityModel
|
||
{
|
||
/// <summary>
|
||
/// 院校id
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public int Universityid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 专业id
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public int MajorId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否为特殊专业,0为不是,1为是
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public int sp { get; set; }
|
||
}
|
||
}
|