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

57 lines
2.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.CustomResource.Pages.Model
  7. {
  8. public class AlarmInfo
  9. {
  10. public AlarmInfo()
  11. {
  12. }
  13. /// <summary>
  14. /// 1 号滚筒线故障
  15. /// </summary>
  16. [Alarm("【1】号滚筒线运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  17. public ushort LOneRollerTrouble { get; set; }
  18. /// <summary>
  19. /// 2 号滚筒线故障
  20. /// </summary>
  21. [Alarm("【2】号滚筒线运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  22. public ushort LTwoRollerTrouble { get; set; }
  23. /// <summary>
  24. /// 3 号滚筒线故障
  25. /// </summary>
  26. [Alarm("【3】号滚筒线运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  27. public ushort LThreeRollerTrouble { get; set; }
  28. /// <summary>
  29. /// 1 号炒锅滚筒运行故障
  30. /// </summary>
  31. [Alarm("【1】号炒锅滚筒运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  32. public ushort FryPotOneRollerTrouble { get; set; }
  33. /// <summary>
  34. /// 2 号炒锅滚筒运行故障
  35. /// </summary>
  36. [Alarm("【2】号炒锅滚筒运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  37. public ushort FryPotTwoRollerTrouble { get; set; }
  38. /// <summary>
  39. /// 3 号炒锅滚筒运行故障
  40. /// </summary>
  41. [Alarm("【3】号炒锅滚筒运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  42. public ushort FryPotThreeRollerTrouble { get; set; }
  43. /// <summary>
  44. /// 4 号炒锅滚筒运行故障
  45. /// </summary>
  46. [Alarm("【4】号炒锅滚筒运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  47. public ushort FryPotFourRollerTrouble { get; set; }
  48. /// <summary>
  49. /// 5 号炒锅滚筒运行故障
  50. /// </summary>
  51. [Alarm("【5】号炒锅滚筒运行故障", AlarmTriggerType.Rising, AlarmLevel.一般报警)]
  52. public ushort FryPotFiveRollerTrouble { get; set; }
  53. }
  54. }