NewGaoKaoApi/PaymentSDK/AliPay/Domain/DeviceApplyTemplate.cs

25 lines
697 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>
/// DeviceApplyTemplate Data Structure.
/// </summary>
[Serializable]
public class DeviceApplyTemplate : AopObject
{
/// <summary>
/// 实际申请数量取值1到500之间最多不能超过500。补充说明一次能申请的机具模板种类最多为10也就是device_list大小为10
/// </summary>
[XmlElement("apply_amount")]
public long ApplyAmount { get; set; }
/// <summary>
/// 机具模板id
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}