Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Act/Common/AnsyReportExportAct.cs
2025-07-04 09:50:02 +08:00

38 lines
916 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.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; }
}
}