You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Model.Config
  7. {
  8. /// <summary>
  9. /// 服务接入配置
  10. /// </summary>
  11. public class ServiceAccessConfig
  12. {
  13. /// <summary>
  14. /// 服务接入总开关
  15. /// </summary>
  16. public bool Enable { get; set; }
  17. /// <summary>
  18. /// IOT服务调用
  19. /// </summary>
  20. public bool EnableIotService { get; set; }
  21. /// <summary>
  22. /// 守护服务
  23. /// </summary>
  24. public bool EnableServiceGuard { get; set; }
  25. /// <summary>
  26. /// 微信推送
  27. /// </summary>
  28. public bool EnablePushWx { get; set; }
  29. /// <summary>
  30. /// 第三方推送
  31. /// </summary>
  32. public bool EnablePushThird { get; set; }
  33. public bool EnablePushHealthy { get; set; }
  34. /// <summary>
  35. /// 快速通道
  36. /// </summary>
  37. public bool EnablePushFast { get; set; }
  38. /// <summary>
  39. /// 围栏服务推送
  40. /// </summary>
  41. public bool EnablePushFence { get; set; }
  42. /// <summary>
  43. /// 非法区域定位检测
  44. /// </summary>
  45. public bool EnableLocationMonitor { get; set; }
  46. /// <summary>
  47. /// 推送Iot定位信息
  48. /// </summary>
  49. public bool EnablePushIotPosition { get; set; }
  50. }
  51. }