using iWareSda.Devices._3_Conveyer.ConveyerModel; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareSda { //Conveyer地址类 public class ConveyerDBForRead { #region 读取到的Conveyer信息 /// /// 心跳 /// [Description("心跳")] public string R_HandShake { get; set; } /// /// 模式-手动 /// [Description("模式-手动")] public string R_Mode_Manua { get; set; } /// /// 模式-自动 /// [Description("模式-自动")] public string R_Mode_Auto { get; set; } /// /// 模式-故障 /// [Description("模式-故障")] public string R_Mode_Breakdown { get; set; } /// /// 扫码器1扫描成功(入库请求) /// [Description("扫码器1扫描成功(入库请求)")] public string R_Scan1_Success { get; set; } /// /// 外形检测 /// [Description("外形检测")] public string R_Shape { get; set; } /// /// 扫码器1扫描的二维码值 /// [Description("扫码器1扫描的二维码值")] public string R_Scan1_Value { get; set; } #region 读的站点 public List R_ConveyerForReadCommList { get; set; } #endregion //agv地址 /// /// AGV允许进入 /// public string R_AGV_AllowIn { get; set; } /// /// AGV进入到位 /// public string R_AGV_AllowInArr { get; set; } /// /// AGV允许出 /// public string R_AGV_AllowOut { get; set; } /// /// AGV出到位 /// public string R_AGV_AllowOutArr { get; set; } #endregion } }