1
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
|
||||
{
|
||||
/// <summary>
|
||||
/// 机器人回调操作输入参数s
|
||||
/// </summary>
|
||||
public class RobotCallBackInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 主载具Id
|
||||
/// </summary>
|
||||
public string carry_id { get; set; }
|
||||
/// <summary>
|
||||
/// 主载具编号
|
||||
/// </summary>
|
||||
public string carry_code { get; set; }
|
||||
/// <summary>
|
||||
/// 子载具ID
|
||||
/// </summary>
|
||||
public string membercarry_id { get; set; }
|
||||
/// <summary>
|
||||
/// 子载具编号
|
||||
/// </summary>
|
||||
public string membercarry_code { get; set; }
|
||||
/// <summary>
|
||||
/// 方向
|
||||
/// </summary>
|
||||
public int direction { get; set; }
|
||||
/// <summary>
|
||||
/// 是否最后一个
|
||||
/// </summary>
|
||||
public bool isLast { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user