This commit is contained in:
alex
2023-06-27 11:47:35 +08:00
parent 559b218df2
commit 824731ada9
5 changed files with 61 additions and 7 deletions

View File

@@ -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; }
}
}