|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace TelpoPush.WanJiaAn.Worker.Models.PushTemplates
- {
- public class PushWanJiaAnTemplate
- {
-
-
-
-
- public string MessageId { get; set; }
-
-
-
-
- public double Altitude { get; set; }
-
-
-
-
- public int LocationType { get; set; }
-
-
-
- public string Imei { get; set; }
-
-
-
-
-
- public string Time { get; set; }
-
-
-
-
- public decimal OriginalLatitude { get; set; }
-
-
-
-
- public decimal OriginalLongitude { get; set; }
-
-
-
-
- public decimal BaiduLatitude { get; set; }
-
-
-
-
- public decimal BaiduLongitude { get; set; }
-
-
-
-
- public decimal GaodeLatitude { get; set; }
-
-
-
-
- public decimal GaodeLongitude { get; set; }
-
-
-
-
- public string Address { get; set; }
- public string wifiMacs { get; set; }
- }
- }
|