51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
using MyCode.Project.Domain.Message.Act.Common;
|
||
using MyCode.Project.Domain.Message.Request.AMing;
|
||
using MyCode.Project.Domain.Message.Request.LxmZHMDReport;
|
||
using MyCode.Project.Domain.Message.Response.AMing;
|
||
using MyCode.Project.Domain.Message.Response.Bfy;
|
||
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
||
using MyCode.Project.Domain.Message.Response.User;
|
||
using MyCode.Project.Domain.Model;
|
||
using MyCode.Project.Infrastructure.Common;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Data;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
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);
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
}
|