WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Text;
 
namespace JiepeiWMS.Model.Result
{
    public class NCJsonResult
    {
        public bool success { get; set; }
        public Data data { get; set; }
        public string code { get; set; }
        public string message { get; set; }
 
        public class Data
        {
            public Ufinterface ufinterface { get; set; }
        }
 
        public class Ufinterface
        {
            public string filename { get; set; }
            public string billtype { get; set; }
            public string sender { get; set; }
            public string replace { get; set; }
            public string roottag { get; set; }
            public string isexchange { get; set; }
            public Sendresult[] sendresult { get; set; }
            public string successful { get; set; }
        }
 
        public class Sendresult
        {
            public string bdocid { get; set; }
            public string filename { get; set; }
            public string code { get; set; }
            public string resultdescription { get; set; }
            public string resultcode { get; set; }
            public string content { get; set; }
        }
    }
}