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.
|
- using BPASmartClient.CustomResource.Pages.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DosingSystem
- {
- public class AlarmInfo
- {
- /// <summary>
- /// 1#急停
- /// </summary>
- [Alarm("1#急停")]
- public bool EStop1 { get; set; }
-
- /// <summary>
- /// 伺服故障
- /// </summary>
- [Alarm("伺服故障")]
- public bool Servo { get; set; }
-
- /// <summary>
- /// 变频器故障
- /// </summary>
- [Alarm("变频器故障")]
- public bool Inverter { get; set; }
-
- /// <summary>
- /// 2#急停
- /// </summary>
- [Alarm("2#急停")]
- public bool EStop2 { get; set; }
-
- /// <summary>
- /// 料仓上限
- /// </summary>
- [Alarm("料仓上限")]
- public bool SiloUpperLimit { get; set; }
-
- /// <summary>
- /// 料仓下限
- /// </summary>
- [Alarm("料仓下限")]
- public bool SiloLowerLimit { get; set; }
- }
- }
|