namespace BPASmartClient.DosingSystem
{
public class RawMaterialDeviceStatus
{
///
/// 原料类型
/// 1:膏体
/// 2:液体
/// 3:粉体
///
public ushort RawMaterialType { get; set; }
///
/// 料仓重量反馈
///
public float WeightFeedback { get; set; }
///
/// 当前出料重量反馈
///
public float NowWeightFeedback { get; set; }
///
/// 上限反馈
///
public bool UpLimitFeedback { get; set; }
///
/// 下限反馈
///
public bool DownLimitFeedback { get; set; }
///
/// 下料重量反馈
///
public float CutWeightFeedback { get; set; }
///
/// 设备运行状态
/// 0:未知
/// 1:等待配料
/// 2:配料中
/// 3:配料完成
///
public ushort RunStatus { get; set; }
///
/// 设备故障编码
///
public ushort DeviceAlarmCode { get; set; }
///
/// 设备料仓编号
///
public ushort DeviceNum { get; set; }
///
/// 原料名称
///
public string DeviceName { get; set; }
///
/// 工作模式0:手动 1:自动
///
public bool WorkModel { get; set; }
///
/// 慢加重量
///
public float SlowAddWeight { get; set; }
///
/// 提前关阀重量
///
public float PreCloseValueWeight { get; set; }
///
/// 快加速度
///
public uint RapidAcceleration { get; set; }
///
/// 慢加速度
///
public uint SlowAcceleration { get; set; }
///
/// 伺服手动速度
///
public uint ServoManualSpeed { get; set; }
///
/// 料仓上限重量
///
public uint SiloUpperLimitWeight { get; set; }
///
/// 料仓下限重量
///
public uint SiloLowerLimitWeight { get; set; }
///
/// 搅拌速度
///
public uint StirringSpeed { get; set; }
}
}