NewGaoKaoApi/PaymentSDK/AliPay/Domain/DeviceApplyOrderItemModel.cs

37 lines
880 B
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>
/// DeviceApplyOrderItemModel Data Structure.
/// </summary>
[Serializable]
public class DeviceApplyOrderItemModel : AopObject
{
/// <summary>
/// 申请数量和sn数量保持一致
/// </summary>
[XmlElement("apply_amount")]
public long ApplyAmount { get; set; }
/// <summary>
/// 设备编号
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 设备型号
/// </summary>
[XmlElement("item_name")]
public string ItemName { get; set; }
/// <summary>
/// 设备型号
/// </summary>
[XmlElement("model_number")]
public string ModelNumber { get; set; }
}
}