Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GpsCardGatewayPosition.Model.Templates
- {
- ///// <summary>
- ///// 解析设备 SOS 事件最终数据
- ///// </summary>
- //public class SoSTemplate
- //{
- // public string SoSId { get; set; }
- // public string Info { get; set; }
- // public int State { get; set; }
- //}
-
- 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; }
- }
- }
|