using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.AGV
{
//AGV获取任务状态
public class AGVQueryTaskStatusRequest
{
///
/// 请求码 每一次请求唯一
///
public string reqCode { get; set; } = Guid.NewGuid().ToString().Replace("-", "");
///
/// 请求时间
///
public string reqTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
///
/// 任务编码数组
///
public List taskCodes = new List();
}
}