NewGaoKaoApi/New_College.Model/Models/D_SeVolunteerInitialization.cs

36 lines
744 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 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; }
}
}