zhangchengsong
3 天以前 28c5c15fed1a1677db594e225f234b7d148eb42c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; }
        }
    }
}