2024-11-15 11:37:55 +08:00
|
|
|
|
using WcsMain.Utils.Tcp.Entity.Message;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.Utils.Tcp.Entity.Convey;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// PLC 向WCS请求分拣口时的请求数据
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class GetRouterData : MsgHeader
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 请求位置
|
|
|
|
|
|
/// </summary>
|
2024-11-15 11:37:55 +08:00
|
|
|
|
public string? Area { get; set; }
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 分拣口庄涛
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? SortStatus { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 条码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Code { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 尺寸
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Size { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 重量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal? Weight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 长
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal? Length { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 宽
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal? Width { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 高
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal? Hight { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备用1
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Spare1 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 备用2
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Spare2 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|