You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
805 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOfflineMarketShopBatchqueryResponse.
/// </summary>
public class AlipayOfflineMarketShopBatchqueryResponse : AopResponse
{
/// <summary>
/// 当前页码
/// </summary>
[XmlElement("current_pageno")]
public string CurrentPageno { get; set; }
/// <summary>
/// 门店列表ID逗号分隔
/// </summary>
[XmlArray("shop_ids")]
[XmlArrayItem("string")]
public List<string> ShopIds { get; set; }
/// <summary>
/// 总页码数目
/// </summary>
[XmlElement("total_pageno")]
public string TotalPageno { get; set; }
}
}