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#

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;
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; }
}
}