|
123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Gaode
- {
- public class GetGaodePositionServiceResult
- {
-
-
-
- public bool CanRetry { get; set; } = true;
- public bool Flag { get; set; }
- public decimal Lon { get; set; }
- public decimal Lat { get; set; }
- public int Accuracy { get; set; }
- public string Poi { get; set; }
- public string AdCode { get; set; }
-
-
-
- public string HashParam { get; set; }
-
-
-
- public string Province { get; set; }
-
-
-
- public string City { get; set; }
-
-
-
- public string District { get; set; }
-
-
-
- public string Address { get; set; }
- }
- }
|