- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.Biz.Location.Dto
- {
- public class LocationInfo
- {
- public string LocationId { get; set; } = default!;
- public string DeviceId { get; set; } = default!;
- public string SerialNo { get; set; } = default!;
- public DateTime? UtcDate { get; set; }
- public DateTime? LastUpdate { get; set; }
- public bool? IsStop { get; set; }
- public int Speed { get; set; }
- public int Course { get; set; }
- public string Address { get; set; } = default!;
- public int LocationType { get; set; }
- public decimal OLat { get; set; }
- public decimal OLng { get; set; }
- public decimal BaiduLat { get; set; }
- public decimal BaiduLng { get; set; }
- public decimal GLat { get; set; }
- public decimal GLng { get; set; }
-
-
-
- public string DeviceStatus { get; set; } = default!;
-
-
-
- public string Remarks { get; set; } = default!;
- public string IDNumber { get; set; } = "";
- public int IDType { get; set; } = 0;
- public string Postcode { get; set; } = default!;
-
-
-
- public bool IsRedressed { get; set; }
-
-
-
- public string HashParam { get; set; } = default!;
-
-
-
- public string Province { get; set; } = default!;
-
-
-
- public string City { get; set; } = default!;
-
-
-
- public string District { get; set; } = default!;
- }
- }
|