37 lines
775 B
C#
37 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model
|
|
{
|
|
public class SeVolunterInitializationDto
|
|
{
|
|
|
|
public int Code { get; set; }
|
|
public string ProvinceName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Policy { get; set; }
|
|
public int IsOpen { get; set; }
|
|
|
|
public int AllScore { get; set; }
|
|
|
|
public int Years { get; set; }
|
|
public List<LizationDto> lizations { get; set; }
|
|
}
|
|
|
|
public class LizationDto
|
|
{
|
|
public string name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 0文理分科 1 3+3 2 3+1+3
|
|
/// </summary>
|
|
public int Policy { get; set; }
|
|
public int code { get; set; }
|
|
}
|
|
|
|
}
|