NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataTradeHab...

25 lines
669 B
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>
/// KoubeiMarketingDataTradeHabbitQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataTradeHabbitQueryModel : AopObject
{
/// <summary>
/// 业务日期
/// </summary>
[XmlElement("biz_date")]
public string BizDate { get; set; }
/// <summary>
/// 门店列表,门店用逗号分割最多支持10个门店。 不填时,则为商户维度汇总数据
/// </summary>
[XmlElement("store_ids")]
public string StoreIds { get; set; }
}
}