36 lines
744 B
C#
36 lines
744 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
|
||
namespace New_College.Model.Models
|
||
{
|
||
public class D_SeVolunteerInitialization : EntityModel
|
||
{
|
||
|
||
public string ProvinceName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 政策类型:0文理 分科|1 3+3|2 3+1+2
|
||
/// </summary>
|
||
public int PolicyType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 执行年份
|
||
/// </summary>
|
||
public int Years { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否开通:1已开通,0未开通
|
||
/// </summary>
|
||
public int IsOpen { get; set; }
|
||
|
||
|
||
/// <summary>
|
||
/// 高考总分数
|
||
/// </summary>
|
||
public int AllScore { get; set; }
|
||
|
||
|
||
}
|
||
}
|