using OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWare.Wms.Application
{
public class AgvWarnCallbackDto
{
///
///
///
public string reqCode { get; set; }
///
///
///
public string reqTime { get; set; }
///
///
///
public string clientCode { get; set; }
///
///
///
public string tokenCode { get; set; }
///
///
///
public List data { get; set; }
}
///
///
///
public class DataItem
{
///
///
///
public string robotCode { get; set; }
///
///
///
public DateTime? beginTime { get; set; }
///
/// 告警内容
///
public string warnContent { get; set; }
///
///
///
public string taskCode { get; set; }
}
}