using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Waste.Domain; namespace Waste.Application { public class ResultList : W_Result { /// /// 商户名称 /// public string BusinessName { get; set; } /// /// 设备名称 /// public string DeviceName { get; set; } /// /// 设备地址 /// public string DeviceAddress { get; set; } /// /// 设备出厂序列号 /// public string DeviceFacEcode { get; set; } /// /// 设备编号 /// public string DeviceEcode { get; set; } /// /// 上报是否成功,1-成功,0-失败 /// public int PostStatus { get; set; } } /// /// 上传的数据包体 /// public class MyPackage { /// /// 固定头 /// public string Key { get; set; } = ""; /// /// 数据体长度 /// public int Len { get; set; } = 0; /// /// IMEI /// public string IMEI { get; set; } = ""; /// /// ICCID /// public string ICCID { get; set; } = ""; /// /// IMSI /// public string IMSI { get; set; } = ""; /// /// 信号强度 /// public string GSLQ { get; set; } = ""; /// /// 时间 /// public string Time { get; set; } /// /// 经度 /// public string Longitude { get; set; } = ""; /// /// 纬度 /// public string Latitude { get; set; } = ""; /// /// 设备地区 /// public string City { get; set; } = ""; /// /// 设备详细地点 /// public string Area { get; set; } = ""; /// /// 垃圾类别 /// public string WasteType { get; set; } = ""; /// /// 重量,KG /// public string Weight { get; set; } = "0"; /// /// 内容 /// public string Body { get; set; } = ""; /// /// 字符串结果 /// public string Str { get; set; } = ""; /// /// 是否是否通过校检,true-是,false-否 /// public bool IsChecked { get; set; } = true; /// /// 是否为心跳包数据 /// public bool IsHeart { get; set; } = false; /// /// 是否为有效测量 /// public bool IsWeight { get; set; } = false; } }