|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- 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
- {
-
- 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; }
-
-
-
- public string Address { get; set; }
-
-
-
- public decimal? Temperature { get; set; }
-
- public string DeviceKey { get; set; }
-
- }
- }
|