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