|
1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Templates
- {
-
-
-
-
-
-
-
-
-
-
- public class SoSTemplates
- {
- public string imei { get; set; } = default!;
- public string sosId { get; set; } = default!;
- public string address { get; set; } = default!;
- public string info { get; set; } = default!;
- 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; }
- }
- }
|