NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceIotMdevicepro...

37 lines
1.2 KiB
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>
/// AlipayCommerceIotMdeviceprodBehaviorlogBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceIotMdeviceprodBehaviorlogBatchqueryModel : AopObject
{
/// <summary>
/// 行为日志类型SCAN_CDOE:扫码/HEARTBEAT:心跳
/// </summary>
[XmlElement("behavior_type")]
public string BehaviorType { get; set; }
/// <summary>
/// 设备sndevice_sn/imei必须填一个如果device_sn会优先通过device_sn查询
/// </summary>
[XmlElement("device_sn")]
public string DeviceSn { get; set; }
/// <summary>
/// 设备imei码device_sn/imei必须填一个如果device_sn会优先通过device_sn查询
/// </summary>
[XmlElement("imei")]
public string Imei { get; set; }
/// <summary>
/// 物料ID支付宝提供建议设置当不同厂商设备device_sn/imei重复时可过滤出关联指定物料ID的记录
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
}
}