You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
783 B
32 lines
783 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Entity
|
|
{
|
|
public class AGVCallBackModel
|
|
{
|
|
/// <summary>
|
|
///请求编号
|
|
/// </summary>
|
|
public string reqCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标点位编码
|
|
/// </summary>
|
|
public string currentPositionCode { get; set; }
|
|
/// <summary>
|
|
/// 任务ID
|
|
/// </summary>
|
|
public string taskCode { get; set; }
|
|
/// <summary>
|
|
/// 取放料箱类型:1.取料箱;2.放料箱
|
|
/// </summary>
|
|
public string action { get; set; }
|
|
/// <summary>
|
|
/// 货架编号
|
|
/// </summary>
|
|
public string podCode { get; set; }
|
|
}
|
|
}
|