using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareSda { /// /// 每个站点的读数据 /// public class StationDB2ObjForReadComm { /// /// 站点编号 /// [Description("站点编号")] public string StationCode { get; set; } /// /// 允许裁纸 /// [Description("允许裁纸")] public bool R_AllowCut { get; set; } /// /// 请求解析读码数据 /// [Description("请求解析读码数据")] public bool R_ReqParseData { get; set; } /// /// 读码器读码结果 /// [Description("读码器读码结果")] public String R_ReadCodeResult { get; set; } /// /// 收到任务下发反馈 /// [Description("收到任务下发反馈")] public bool R_ACK { get; set; } /// /// 模式 /// [Description("模式")] public short R_Model { get; set; } /// /// 运行状态 /// [Description("运行状态")] public short R_State { get; set; } /// /// 报警代码 /// [Description("报警代码")] public short R_AlarmCode { get; set; } /// /// 报警代码内容,非DB块内容 /// [Description("报警代码内容,非DB块内容")] public string R_AlarmCodeMsg { get; set; } /// /// 当前目标地址 /// [Description("当前目标地址")] public short R_Destination { get; set; } /// /// 货形 /// [Description("货形")] public short R_Shape { get; set; } /// /// 当前任务号 /// [Description("当前任务号")] public int R_TaskID { get; set; } /// /// 机器人入库完成 /// [Description("机器人入库完成")] public bool R_InboundFinish { get; set; } /// /// 机器人入库库位号 /// [Description("机器人入库库位号")] public string R_InboundNumber { get; set; } /// /// 机器人出库完成 /// [Description("机器人出库完成")] public bool R_OutboundFinish { get; set; } /// /// 机器人出库库位号 /// [Description("机器人出库库位号")] public string R_OutboundNumber { get; set; } /// /// 入库任务号 /// [Description("入库任务号")] public short R_Inbound_TaskID { get; set; } /// /// 出库任务号 /// [Description("出库任务号")] public short R_Outbound_TaskID { get; set; } /// /// 码垛放货完成 /// [Description("码垛放货完成")] public bool R_PalletizingFinish { get; set; } /// /// 码垛读取任务号 /// [Description("码垛读取任务号")] public short R_PalletizingTaskNo { get; set; } /// /// 码垛位置1状态 /// [Description("码垛位置1状态")] public short R_PalletizingStation1 { get; set; } /// /// 码垛位置2状态 /// [Description("码垛位置2状态")] public short R_PalletizingStation2 { get; set; } /// /// 码垛任务接收完成 /// [Description("码垛任务接收完成")] public bool R_PalletizingAck { get; set; } /// /// 强制出库模式 /// [Description("强制出库模式")] public bool R_ForceOutboundMode { get; set; } /// /// 合包任务完成 /// [Description("合包任务完成")] public bool R_SurrouondTaskFinish { get; set; } /// /// 合包任务号 /// [Description("合包任务号")] public short R_SurrouondTaskNo { get; set; } } }