NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceOperationCont...

75 lines
1.9 KiB
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceOperationContentQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceOperationContentQueryModel : AopObject
{
/// <summary>
/// 展台
/// </summary>
[XmlArray("booth")]
[XmlArrayItem("string")]
public List<string> Booth { get; set; }
/// <summary>
/// 渠道
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 城市编码
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 内容 ID 加密串
/// </summary>
[XmlElement("content_id_str")]
public string ContentIdStr { get; set; }
/// <summary>
/// 扩展参数 , json 串
/// </summary>
[XmlElement("ext_params")]
public string ExtParams { get; set; }
/// <summary>
/// 分页查询页码
/// </summary>
[XmlElement("page_number")]
public string PageNumber { get; set; }
/// <summary>
/// 分页查询每页记录数
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 运营场景
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 运营阵地 : 比如一个页面
/// </summary>
[XmlElement("touch_point")]
public string TouchPoint { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}