NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniAmpeDeviceQue...

43 lines
1.1 KiB
C#
Raw 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>
/// AlipayOpenMiniAmpeDeviceQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniAmpeDeviceQueryModel : AopObject
{
/// <summary>
/// 设备id选填
/// </summary>
[XmlElement("device_id")]
public string DeviceId { get; set; }
/// <summary>
/// 机型ID必填
/// </summary>
[XmlElement("model_id")]
public long ModelId { get; set; }
/// <summary>
/// 当前页选填默认值为1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页记录数选填默认值10, 最大值为100
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 产品ID必填
/// </summary>
[XmlElement("product_id")]
public long ProductId { get; set; }
}
}