NewGaoKaoApi/New_College.Model/Models/D_FackUniversity.cs

36 lines
707 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_FackUniversity
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 学校名称
/// </summary>
public string UniversityName { get; set; }
/// <summary>
/// 虚假学校1,0为正规学校
/// </summary>
public int Type { get; set; }
/// <summary>
///
/// </summary>
public string Location { get; set; }
}
}