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

25 lines
1.3 KiB
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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.Common
{
public class ReportExportAct
{
/// <summary>
/// 1:门店诊断报表 2:门店诊断总报表--单店运营核心指标 3:门店诊断总报表--产品品项分析列表 4=会员查询 5=会员余额变动明细 6=会员消费明细 7=会员服务明细 8=初始化会员余额变动明细 9=收款排名报表 10=收款总报表 11=店铺日业绩报表 12=店铺月业绩报表 13=店铺运营报表
/// 14:均店报表导出 15零售业绩报表 16门店经营月度报表 17个人产品销售计划进度报表 18:个人新客销售计划进度报表 19个人老客复购邀约计划进度报表
/// 26:老客复购邀约计划进度报表 27老客复购邀约计划店铺明细报表 28:老客复购邀约计划全部店铺明细报表(导出明细)
/// 23:新客销售计划进度报表 22:新客销售计划店铺明细报表 25:新客销售计划全部店铺明细报表(导出明细)
/// </summary>
public int ReportType { get; set; }
/// <summary>
/// 请求参数不需要pageindex和pagesize
/// </summary>
public object Condition { get; set; }
}
}