namespace YBEE.EQM.Application; /// /// 导出新高考报表输入参数 /// public class NceeExportInput { /// /// 计划ID /// [Required] public int NceePlanId { get; set; } /// /// 导出整体分段统计 /// public bool IsExportScoreRange { get; set; } = true; /// /// 导出各机构分段统计 /// public bool IsExportOrgScoreRange { get; set; } = true; /// /// 导出整体划线统计 /// public bool IsExportLine { get; set; } = true; /// /// 导出各机构划线统计 /// public bool IsExportOrgLine { get; set; } = true; /// /// 导出整体班级划线统计 /// public bool IsExportClassLine { get; set; } = true; /// /// 导出整体转换分 /// public bool IsExportConvertScore { get; set; } = true; /// /// 导出各机构划线统计 /// public bool IsExportOrgConvertScore { get; set; } = true; }