NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniAmpeDeviceAdd...

33 lines
1.0 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniAmpeDeviceAddModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniAmpeDeviceAddModel : AopObject
{
/// <summary>
/// 用于标识厂商单个设备产品下唯一的一个设备推荐使用厂商自己定义的序列号。单次最多提交200个如果productId下已存在deviceId会被更新为最新一次提交的数据
/// </summary>
[XmlArray("device_id_list")]
[XmlArrayItem("string")]
public List<string> DeviceIdList { get; set; }
/// <summary>
/// 设备产品下具体的一个机型ID由系统生成
/// </summary>
[XmlElement("model_id")]
public long ModelId { get; set; }
/// <summary>
/// 设备产品的productId由系统生成
/// </summary>
[XmlElement("product_id")]
public long ProductId { get; set; }
}
}