This commit is contained in:
2025-07-04 09:50:02 +08:00
commit 3d800dbd11
2564 changed files with 1353015 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
using MyCode.Project.Domain.Message.Response.User;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.Common
{
public class AnsyReportExportAct
{
/// <summary>
/// 1:门店诊断报表
/// </summary>
public int ReportType { get; set; }
/// <summary>
/// 请求参数不需要pageindex和pagesize
/// </summary>
public object Condition { get; set; }
/// <summary>
/// 当前操作用户
/// </summary>
public LoginInfo CurrentUser { get; set; }
/// <summary>
/// 报表id
/// </summary>
public long ReportId { get; set; }
/// <summary>
/// 0:zip格式 1xls格式
/// </summary>
public int ExportFileType { get; set; }
}
}