選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
561B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Service.Resolver.Property.Dto
  7. {
  8. public class GpsInfoModel
  9. {
  10. public decimal Longitude { get; set; }
  11. public decimal Latitude { get; set; }
  12. public decimal Altitude { get; set; }
  13. public int CoordinateSystem { get; set; }
  14. public string IDNumber { get; set; } = "";
  15. //0 无事件 1 SOS事件 2 Pay事件
  16. public int IDType { get; set; } = 0;
  17. }
  18. }