Files
YunTongJackYunTask/Reportapi/MyCode.Project.Services/IServices/IReportService.cs
2025-07-04 10:47:18 +08:00

37 lines
685 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using MyCode.Project.Domain.Message.Act.Common;
namespace MyCode.Project.Services
{
public interface IReportService
{
/// <summary>
/// 异步执行导出有带websocket异步推送
/// </summary>
/// <param name="obj"></param>
string ReportExportAnsy(object obj);
/// <summary>
/// 测试html转成xls
/// </summary>
void HtmLToXls();
/// <summary>
/// 异步执行导出有带websocket异步推送
/// </summary>
/// <param name="obj"></param>
string ReportExport(AnsyReportExportAct act);
}
}