16 lines
416 B
C#
16 lines
416 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Common.Request.cloud
|
|
{
|
|
public class DevStatusParam {
|
|
/// <summary>
|
|
/// 设备码
|
|
/// </summary>
|
|
public string siid {get; set;}
|
|
|
|
public override string ToString()
|
|
{
|
|
return JsonConvert.SerializeObject(this,Formatting.Indented,new JsonSerializerSettings(){NullValueHandling = NullValueHandling.Ignore});
|
|
}
|
|
}
|
|
} |