90 lines
2.2 KiB
C#
90 lines
2.2 KiB
C#
using MongoDB.Bson;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using Newtonsoft.Json;
|
||
namespace Admin.NET.Core.Service;
|
||
public class ZyFusionResponseDto
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
[JsonConverter(typeof(ObjectIdConverter))]
|
||
public ObjectId _id { get; set; }
|
||
|
||
/// <summary>
|
||
///类型:0 综合||1(物理)|2(历史)|3理科 |4 文科
|
||
/// </summary>
|
||
public int Type { get; set; }
|
||
/// <summary>
|
||
/// 批次名称
|
||
/// </summary>
|
||
public string BatchName { get; set; }
|
||
public string ProviceCode { get; set; }
|
||
public string ProvinceName { get; set; }
|
||
public string UniversityName { get; set; }
|
||
|
||
public string UniversityCode { get; set; }
|
||
|
||
public string MajorGroupName { get; set; }
|
||
public string MajorName { get; set; }
|
||
|
||
public string MajorCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 投档计划数
|
||
/// </summary>
|
||
public int PlanCount { get; set; }
|
||
|
||
/// <summary>
|
||
///投档最低位次
|
||
/// </summary>
|
||
public int LowSection { get; set; }
|
||
|
||
public int LowScore { get; set; }
|
||
|
||
|
||
|
||
}
|
||
|
||
|
||
|
||
|
||
public class zsPlanProfessionDto
|
||
{
|
||
public string 省份 { get; set; }
|
||
|
||
public string 年份 { get; set; }
|
||
public string 批次 { get; set; }
|
||
public string 类型 { get; set; }
|
||
public string 院校代码 { get; set; }
|
||
public string 院校名称 { get; set; }
|
||
public string 专业代码 { get; set; }
|
||
public string 专业名称 { get; set; }
|
||
public string 计划人数 { get; set; }
|
||
public string 学费 { get; set; }
|
||
public string 学制 { get; set; }
|
||
public string 选科要求 { get; set; }//河南专业备注会用这个字段
|
||
|
||
|
||
}
|
||
|
||
public class zsShPlanProfessionDto
|
||
{
|
||
public string 批次 { get; set; }
|
||
public string 类型 { get; set; }
|
||
public string 科目要求 { get; set; }
|
||
public string 院校 { get; set; }
|
||
public string 院校代码 { get; set; }
|
||
public string 专业组 { get; set; }
|
||
public string 专业代码 { get; set; }
|
||
public string 专业名称 { get; set; }
|
||
public string 专业备注 { get; set; }
|
||
public string 计划数 { get; set; }
|
||
public string 学费 { get; set; }
|
||
public string 学制 { get; set; }
|
||
|
||
|
||
} |