using Khd.Core.Domain.Models; using System.Collections.Generic; namespace Khd.Core.Domain.Dto.webapi { public class agvCallbackDto { /// /// 请求编号,每个请求都要一个唯一编号, 同一个请求重复提交, 使用同一编号。; /// public string reqCode { get; set; } /// /// 请求时间截 格式: “yyyy-MM-dd HH:mm:ss”。 /// 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; } } }