using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GpsCardGatewayPosition.Service.Resolver.Property.Dto
{
public class TemperatureInfoModel
{
//deviceId = "", imei = "", tempTime = "", tempAddress = "广东省,佛山,南海,桂城瀚天科技城", tempValue = 36.1
public string DeviceId { get; set; }
///
/// 设备昵称
///
public string DeviceName { get; set; }
public string Imei { get; set; }
public string TempId { get; set; }
///
/// 测温时间
///
public DateTime? TempTime { get; set; }
///
/// 省
///
public string Province { get; set; }
///
/// 市
///
public string City { get; set; }
///
/// 县区
///
public string District { get; set; }
///
/// POI地址
///
public string Address { get; set; }
///
/// 体温值
///
public decimal? Temperature { get; set; }
public string DeviceKey { get; set; }
}
}