37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
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>
|
||
/// 设备sn,device_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; }
|
||
}
|
||
}
|