using MongoDB.Bson.Serialization.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core.Service
{
public class AdTrendsRequestDto : PageBaseRequest
{
public string keyword { get; set; }
///
/// 用户所在省份编码
///
public string locationCode { get; set; }
public List provinceName { get; set; }
///
///
///
public List utype { get; set; }
public List nature { get; set; }
public List ascription { get; set; }
///
/// 985、211
///
public List feature { get; set; }
///
/// 本科0专科1
///
public int? level { get; set; }
}
public class AdTrendsExtendDto
{
public int Year { get; set; }
}
public class MajorAdTrendsRequestDto
{
///
/// 院校Id
///
public int uid { get; set; }
///
/// 年份(预留参数不传)
///
public int year { get; set; }
///
/// 学生所在省份编码
///
public string locationCode { get; set; }
}
public class MajorAdTrendsResponseDto
{
public int Year { get; set; }
public List items { get; set; }
}
public class MajorAdTrendsItemResponseDto
{
public string MajorGroup { get; set; }
///
/// 专业代码
///
public string MajorCode { get; set; }
///
/// 专业名称
///
public string MajorName { get; set; }
///
///专业备注
///
public string MajroRemark { get; set; }
///
/// 选科限制
///
public string Selectsubject { get; set; }
///
/// 年份
///
public string Academic { get; set; }
///
/// 专业所在批次
///
public string BatchName { get; set; }
///
/// 专业学费
///
public string Fee { get; set; }
///
/// 旧计划
///
public int OldPlan { get; set; }
///
/// 新计划
///
public int NewPlan { get; set; }
}
public class AdTrendsResponseDto
{
[BsonId]
public long _id { get; set; }
public string name { get; set; }
public string provinceName { get; set; }
public string cityName { get; set; }
public string logo { get; set; }
public string rank { get; set; }
public string collegeCode { get; set; }
public List features { get; set; }
public string belong { get; set; }
public int? level { get; set; }
public List utype { get; set; }
public string nature { get; set; }
//public string batchName { get; set; }
///
/// 招生总专业数
///
public int PlanCount { get; set; }
///
/// 旧计划
///
public int OldPlan { get; set; }
///
/// 新计划
///
public int NewPlan { get; set; }
}
}