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