using BPASmartClient.Device;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.MorkMV1
{
public class Alarm : IAlarm
{
///
/// 煮面机温度过低
///
[Alarm("煮面机温度过低")]
public bool MachineLowTemperature { get; set; }
///
/// 大碗数量不足
///
[Alarm("大碗数量不足")]
public bool Supply1_LossBowl { get; set; }
///
/// 一次性碗数量不足
///
[Alarm("一次性碗数量不足")]
public bool Supply2_LossBowl { get; set; }
///
/// 设备未初始化
///
[Alarm("设备未初始化")]
public bool DeviceNoInit { get; set; }
///
/// 移碗丝杆未初始化
///
[Alarm("移碗丝杆未初始化")]
public bool MoveScrewRodNoInit { get; set; }
///
/// 供碗1未初始化
///
[Alarm("供碗1未初始化")]
public bool SacrificialVesselNoInit { get; set; }
///
/// 气缸推杆未初始化
///
[Alarm("气缸推杆未初始化")]
public bool CylinderNoInit { get; set; }
///
/// 煮面机初未初始化
///
[Alarm("煮面机初未初始化")]
public bool NoodleCookerNoInit { get; set; }
///
/// 机器人未初始化
///
[Alarm("机器人未初始化")]
public bool RobotNoInit { get; set; }
///
/// 料仓未初始化
///
[Alarm("料仓未初始化")]
public bool SiloNoInit { get; set; }
}
}