Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
718B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Common
  7. {
  8. public class Consts
  9. {
  10. /// <summary>
  11. /// HttpClient常用配置分组名称
  12. /// </summary>
  13. public const string DEFAULT_HTTPCLIENT_NAME = "GPS_DEFAULT_HTTP";
  14. /// <summary>
  15. /// 纪元时间(UTC时间戳起始计算时间)
  16. /// </summary>
  17. public static DateTime EraUtcTime = DateTime.Parse("1970/01/01");
  18. /// <summary>
  19. /// 有效定位的半径阈值(大于该值则为无效定位)
  20. /// </summary>
  21. public static int RadiusThreshold = 150;
  22. }
  23. }