NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceIotSnApplyBat...

31 lines
731 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>
/// AlipayCommerceIotSnApplyBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceIotSnApplyBatchqueryModel : AopObject
{
/// <summary>
/// 每页数量最多100
/// </summary>
[XmlElement("limit")]
public long Limit { get; set; }
/// <summary>
/// 分页搜索偏移值
/// </summary>
[XmlElement("offset")]
public long Offset { get; set; }
/// <summary>
/// 厂商id
/// </summary>
[XmlElement("supplier_id")]
public string SupplierId { get; set; }
}
}