NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataIntellig...

43 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiMarketingDataIntelligentIndicatorQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataIntelligentIndicatorQueryModel : AopObject
{
/// <summary>
/// 业务类型。1.PlanQuery 智能方案效果查询2.PlanQueryByStore 智能营销方案门店效果查询
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// promo_id为智能活动的id当bizType= PlanQuery'和bizType= PlanQueryByStore'取这里的值; sort_field为排序指标KEY sort_typeASC表示升序,DESC表示降序 store_Ids为门店ID多个门店使用逗号分隔
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 操作人信息
/// </summary>
[XmlElement("operator_context")]
public PromoOperatorInfo OperatorContext { get; set; }
/// <summary>
/// 外部业务id请保持足够的复杂方便数据来源排查
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 获取的报告时间,格式:yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("report_date")]
public string ReportDate { get; set; }
}
}