NewGaoKaoApi/New_College.Model/Models/D_MajorMapUniversity.cs

29 lines
675 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}