29 lines
643 B
C#
29 lines
643 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class T_EnrollmentPlane : EntityModel
|
|
{
|
|
/// <summary>
|
|
/// 计划名称
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string EnrollmentName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 省份Id
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Area_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年份
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Years { get; set; }
|
|
}
|
|
}
|