终端一体化运控平台
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.
 
 
 

49 lines
1.1 KiB

  1. using BPASmartClient.CustomResource.Pages.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.DosingSystemSingle
  8. {
  9. public class AlarmInfo
  10. {
  11. /// <summary>
  12. /// 1#急停
  13. /// </summary>
  14. [Alarm("1#急停")]
  15. public bool EStop1 { get; set; }
  16. /// <summary>
  17. /// 伺服故障
  18. /// </summary>
  19. [Alarm("伺服故障")]
  20. public bool Servo { get; set; }
  21. /// <summary>
  22. /// 变频器故障
  23. /// </summary>
  24. [Alarm("变频器故障")]
  25. public bool Inverter { get; set; }
  26. /// <summary>
  27. /// 2#急停
  28. /// </summary>
  29. [Alarm("2#急停")]
  30. public bool EStop2 { get; set; }
  31. /// <summary>
  32. /// 料仓上限
  33. /// </summary>
  34. [Alarm("料仓上限")]
  35. public bool SiloUpperLimit { get; set; }
  36. /// <summary>
  37. /// 料仓下限
  38. /// </summary>
  39. [Alarm("料仓下限")]
  40. public bool SiloLowerLimit { get; set; }
  41. }
  42. }