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.
 
 

31 lines
706 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPA.Message;
  7. using BPA.Message.Enum;
  8. using BPA.Models;
  9. namespace HBLConsole.GVL
  10. {
  11. public class GeneralConfig
  12. {
  13. /// <summary>
  14. /// 客户端设备类型
  15. /// </summary>
  16. public static DeviceClientType DeviceType { get; set; }
  17. /// <summary>
  18. /// 心跳上报的物料信息
  19. /// </summary>
  20. public static List<BatchingInfo> BatchingInfos { get; set; } = new List<BatchingInfo>();
  21. /// <summary>
  22. /// 心跳健康状态
  23. /// </summary>
  24. public static bool Healthy { get; set; }
  25. }
  26. }