namespace YBEE.EQM.Application; /// /// 高中模拟分析导出服务 /// public interface INceeExportService { #region 导出报表 /// /// 导出联盟区县模拟划线报表 /// /// /// /// Task<(string, byte[])> ExportAllianceDistrict(int nceePlanId); /// /// 导出已选科的模拟划线报表 /// /// /// /// Task<(string, byte[])> ExportDirectionSeleted(int nceePlanId); /// /// 导出未选科的模拟划线报表 /// /// /// /// Task<(string, byte[])> ExportDirectionUnseleted(int nceePlanId); #endregion }