You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using Khd.Core.Domain.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Khd.Core.Domain.Dto.webapi
|
|
{
|
|
public class agvCallbackDto
|
|
{
|
|
/// <summary>
|
|
/// 请求编号,每个请求都要一个唯一编号, 同一个请求重复提交, 使用同一编号。;
|
|
/// </summary>
|
|
public string reqCode { get; set; }
|
|
/// <summary>
|
|
/// 请求时间截 格式: “yyyy-MM-dd HH:mm:ss”。
|
|
/// </summary>
|
|
public string reqTime { get; set; }
|
|
public string cooX { get; set; }
|
|
public string cooY { get; set; }
|
|
public string currentPositionCode { get; set; }
|
|
public string data { get; set; }
|
|
public string mapCode { get; set; }
|
|
public string mapDataCode { get; set; }
|
|
public string stgBinCode { get; set; }
|
|
public string method { get; set; }
|
|
public string podCode { get; set; }
|
|
public string podDir { get; set; }
|
|
public string materialLot { get; set; }
|
|
public string materialType { get; set; }
|
|
public string robotCode { get; set; }
|
|
public string taskCode { get; set; }
|
|
public string wbCode { get; set; }
|
|
public string ctnrCode { get; set; }
|
|
public string ctnrType { get; set; }
|
|
public string roadWayCode { get; set; }
|
|
public string seq { get; set; }
|
|
public string eqpCode { get; set; }
|
|
}
|
|
|
|
}
|