NewGaoKaoApi/New_College.Model/ViewModels/SeVolunterInitializationDto.cs

37 lines
778 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model
{
public class SeVolunterInitializationDto
{
public string 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; }
}
}