INceeExportService.cs 986 B

12345678910111213141516171819202122232425262728293031
  1. namespace YBEE.EQM.Application;
  2. /// <summary>
  3. /// 高中模拟分析导出服务
  4. /// </summary>
  5. public interface INceeExportService
  6. {
  7. #region 导出报表
  8. /// <summary>
  9. /// 导出联盟区县模拟划线报表
  10. /// </summary>
  11. /// <param name="nceePlanId"></param>
  12. /// <returns></returns>
  13. /// <exception cref="Exception"></exception>
  14. Task<(string, byte[])> ExportAllianceDistrict(int nceePlanId);
  15. /// <summary>
  16. /// 导出已选科的模拟划线报表
  17. /// </summary>
  18. /// <param name="nceePlanId"></param>
  19. /// <returns></returns>
  20. /// <exception cref="Exception"></exception>
  21. Task<(string, byte[])> ExportDirectionSeleted(int nceePlanId);
  22. /// <summary>
  23. /// 导出未选科的模拟划线报表
  24. /// </summary>
  25. /// <param name="nceePlanId"></param>
  26. /// <returns></returns>
  27. /// <exception cref="Exception"></exception>
  28. Task<(string, byte[])> ExportDirectionUnseleted(int nceePlanId);
  29. #endregion
  30. }