NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignUser...

37 lines
1.1 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>
/// KoubeiMarketingCampaignUserAssetQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignUserAssetQueryModel : AopObject
{
/// <summary>
/// 页码
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页显示数目(最大查询50)
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 查询范围:用户所有资产(USER_ALL_ASSET),用户指定商户可用资产(USER_MERCHANT_ASSET),用户指定门店可用资产USER_SHOP_ASSET;指定USER_SHOP_ASSET必须传递shopid
/// </summary>
[XmlElement("scope")]
public string Scope { get; set; }
/// <summary>
/// 门店id如果查询范围是门店门店id不能为空
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}