tuiwucarrer/Admin.NET/Admin.NET.Application/Service/SysVolunteerTb/Dto/ExportExcelDto.cs

135 lines
3.1 KiB
C#

using MiniExcelLibs.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application.Service;
public class ExportExcelDto
{
public long Id { get; set; }
public string location { get; set; }
}
public class VolunteerItemsViewMinExcelAttr
{
[ExcelColumnName("排序")]
public int Sort { get; set; }
/// <summary>
/// 院校名称
/// </summary>
[ExcelColumnName("院校名称")]
public string UniversityName { get; set; }
/// <summary>
/// 院校编码
/// </summary>
[ExcelColumnName("院校编码")]
public string UniversityCode { get; set; }
/// <summary>
/// 学校所在地区
/// </summary>
[ExcelColumnName("学校所在地区")]
public string AreaName { get; set; }
/// <summary>
/// 公办|民办
/// </summary>
[ExcelColumnName("学校类型")]
public string Nature { get; set; }
/// <summary>
/// 专业代码
/// </summary>
///
[ExcelColumnName("专业代码")]
public string MajorCode { get; set; }
/// <summary>
/// 专业组
/// </summary>
[ExcelColumnName("专业组")]
public string MajorGroup { get; set; }
/// <summary>
/// 专业名称
/// </summary>
[ExcelColumnName("专业名称")]
public string Major { get; set; }
///// <summary>
///// 专业备注
///// </summary>
//[ExcelColumnName("专业备注")]
//public string MajorRemark { get; set; }
[ExcelColumnName("学制")]
public string AcademicYear { get; set; }
/// <summary>
/// 专业选科
/// </summary>
[ExcelColumnName("专业选科")]
public string MajorSubjectClam { get; set; }
/// <summary>
/// 计划数
/// </summary>
[ExcelColumnName("计划数量")]
public int planCount { get; set; }
/// <summary>
/// 学费
/// </summary>
[ExcelColumnName("学费")]
public string fee { get; set; }
//public List<VolunteerTablePlanMajorItem> planMajorItems { get; set; }
[ExcelColumnName("23计划")]
public string _23PlanCount { get; set; }
/// <summary>
/// 位次
/// </summary>
[ExcelColumnName("23最低位次")]
public string _23RankLine { get; set; }
///// <summary>
///// 最低分
///// </summary>
[ExcelColumnName("23最低分")]
public string _23Scoreline { get; set; }
[ExcelColumnName("22计划")]
public string _22PlanCount { get; set; }
/// <summary>
/// 位次
/// </summary>
[ExcelColumnName("22最低位次")]
public string _22RankLine { get; set; }
///// <summary>
///// 最低分
///// </summary>
[ExcelColumnName("22最低分")]
public string _22Scoreline { get; set; }
[ExcelColumnName("21计划")]
public string _21PlanCount { get; set; }
/// <summary>
/// 位次
/// </summary>
[ExcelColumnName("21最低位次")]
public string _21RankLine { get; set; }
///// <summary>
///// 最低分
///// </summary>
[ExcelColumnName("21最低分")]
public string _21Scoreline { get; set; }
}