using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.MqProducer.Model { public class FenceLocationPlus { public string DeviceId { get; set; } public string imei { get; set; } public string address { get; set; } public decimal baiduLatitude { get; set; } public decimal baiduLongitude { get; set; } public decimal gaodeLatitude { get; set; } public decimal gaodeLongitude { get; set; } public decimal originalLatitude { get; set; } public decimal originalLongitude { get; set; } public string UtcDate { get; set; } public string LastUpdate { get; set; } public int Radius { get; set; } } }