using System;
namespace WCS.Entity.Protocol
{
///
/// 站台协议22
///
public interface IStation521 : IProtocol
{
///
/// 任务号
///
Int32 TASKNUM { get; set; }
///
/// 货物编码 / 2305:货物重量 使用时需要除以10 /码垛位:单号
///
Int32 GOODSCODE { get; set; }
///
/// 货物类型 / 码垛位:托盘类型 22车间 入库1 出库2 无货时为零
///
Int16 GOODSTYPE { get; set; }
///
/// 货物尺寸 / 码垛位:最大码垛数量
///
Int16 GOODSSIZE { get; set; }
///
/// 起始位置
///
Int16 GOODSSTART { get; set; }
///
/// 目标位置
///
Int16 GOODSEND { get; set; }
///
/// PLC请求信号
///
bool REQUEST { get; set; }
///
/// WCS确认信号
///
bool RES { get; set; }
///
/// 是否手动入库
///
bool RES1 { get; set; }
///
/// 删除任务
///
bool RES2 { get; set; }
///
/// 光电信号
///
bool PH_STATUS { get; set; }
///
/// 外形故障
///
bool GOODS_ERR { get; set; }
///
/// 允许放货
///
bool F_OUTSIDE { get; set; }
///
/// 允许离开
///
bool B_OUTSIDE { get; set; }
///
/// 允许取货
///
bool L_OUTSIDE { get; set; }
///
/// 允许离开(取货)
///
bool R_OUTSIDE { get; set; }
///
/// 超高故障
///
bool H_OUTSIDE { get; set; }
///
/// 条码未读出
///
bool BCR_NOREAD { get; set; }
///
/// 超重
///
bool OVERLOAD { get; set; }
///
/// 拆盘机用光电
///
bool PH_STATUS2 { get; set; }
///
/// 备用,WCS标识单号不符需自动排除
///
bool RES4 { get; set; }
///
/// 备用
///
bool RES5 { get; set; }
///
/// 外检高度
///
short HEIGHT { get; set; }
}
}