38 lines
916 B
C#
38 lines
916 B
C#
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格式 1:xls格式
|
||
/// </summary>
|
||
public int ExportFileType { get; set; }
|
||
}
|
||
}
|