using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_Tasks.油墨仓
{
public class YMReadData
{
///
/// 堆垛机状态
///
public short R_YM_Status;
///
/// 堆垛机手自动状态
///
public short R_YM_AutoStatus;
///
/// 当前正在执行的任务号
///
public int R_YM_TaskNum;
///
/// 堆垛机工作状态
///
public short R_YM_WorkStatus;
///
/// 作业类型
///
public short R_YM_WorkType;
///
/// 托盘类型
///
public short R_YM_TrayType;
///提升机
///
/// 有货(读)
///
public bool R_YM_Tray1;
///
/// 入库执行中(读)
///
public bool R_YM_Inbounding1;
///
/// 提升机空闲(读)
///
public bool R_YM_Leisure1;
///
/// 出库执行中(读)
///
public bool R_YM_Outbounding1;
///
/// 申请入库(写)
///
public bool W_YM_RequestIn1;
///
/// 申请出库(写)
///
public bool W_YM_RequestOut1;
///
/// 有货(读)
///
public bool R_YM_Tray2;
///
/// 入库执行中(读)
///
public bool R_YM_Inbounding2;
///
/// 提升机空闲(读)
///
public bool R_YM_Leisure2;
///
/// 出库执行中(读)
///
public bool R_YM_Outbounding2;
///
/// 申请入库(写)
///
public bool W_YM_RequestIn2;
///
/// 申请出库(写)
///
public bool W_YM_RequestOut2;
}
}