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
{
///
/// 1:门店诊断报表
///
public int ReportType { get; set; }
///
/// 请求参数,不需要pageindex和pagesize
///
public object Condition { get; set; }
///
/// 当前操作用户
///
public LoginInfo CurrentUser { get; set; }
///
/// 报表id
///
public long ReportId { get; set; }
///
/// 0:zip格式 1:xls格式
///
public int ExportFileType { get; set; }
}
}