using System.ComponentModel;
namespace WCS.Entity.Protocol.Station
{
///
/// DB520
///
public interface IStation520 : IProtocol
{
///
/// 任务号
///
[Description("任务号")]
int TaskNumber { get; set; }
///
/// 起始地址
///
[Description("起始地址")]
short GoodsStart { get; set; }
///
/// 目标地址
///
[Description("目标地址")]
short GoodsEnd { get; set; }
///
/// 运行模式
///
[Description("任务类型")]
short Mode { get; set; }
///
/// AGV放货请求
///
[Description("AGV放货请求")]
bool AGV_PUT_ASK { get; set; }
///
/// AGV放货运行
///
[Description("AGV放货运行")]
bool AGV_PUT_RUN { get; set; }
///
/// AGV放货完成
///
[Description("AGV放货完成")]
bool AGV_PUT_OK { get; set; }
///
/// AGV取货请求
///
[Description("AGV取货请求")]
bool AGV_GET_ASK { get; set; }
///
/// AGV取货运行
///
[Description("AGV取货运行")]
bool AGV_GET_RUN { get; set; }
///
/// AGV取货完成
///
[Description("AGV取货完成")]
bool AGV_GET_OK { get; set; }
///
/// 凭证号 每次累加
///
[Description("凭证号")]
short VoucherNo { get; set; }
}
}