using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_Model.Models.System
|
{
|
public class JobError
|
{
|
public class DevErrorRequest
|
{
|
public List<DevErrorItem> devErrorJsons { get; set; } = new List<DevErrorItem>();
|
public string dealType { get; set; }
|
public string psd { get; set; } = "";
|
}
|
|
public class DevErrorItem
|
{
|
public string devuuid { get; set; }
|
public string id { get; set; } = "";
|
public string errorcode { get; set; }
|
public string errorinfo { get; set; }
|
public string erroraddress { get; set; }
|
public string warehouse { get; set; }
|
public string remark { get; set; }
|
public string devname { get; set; }
|
}
|
}
|
}
|