zhanghonglin
3 小时以前 1e6a3ce80c38124fe8750f59956528204e696d4e
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Castle.Core.Resource;
using NetTaste;
 
namespace WIDESEAWCS_Model.Models.ERP
{
    public class dtos
    {
        public dto dto { get; set; } = new dto();
    }
 
    public class dto
    {
        public BusiType BusiType { get; set; } = new BusiType();
        public Warehouse Warehouse { get; set; } = new Warehouse();
        public string VoucherDate { get; set; }
        public List<RDRecordDetails> RDRecordDetails { get; set; } = new List<RDRecordDetails>();
        public string Code { get; set; }
        public string Memo { get; set; }
        public string ExternalCode { get; set; }
        public VoucherType VoucherType { get; set; } = new VoucherType();
    }
    public class Partner
    {
        public string Code { get; set; }
    }
    public class VoucherType
    {
        public string Code { get; set; }
    }
    public class BusiType
    {
        public string Code { get; set; }
    }
    public class Warehouse
    {
        public string Code { get; set; }
    }
    public class RDRecordDetails
    {
        public string ExpiryDate { get; set; }
        public int Price { get; set; }
        public string Batch { get; set; }
        public int Amount { get; set; }
        public int BaseQuantity { get; set; }
        public string Code { get; set; }
        public Inventory Inventory { get; set; } = new Inventory();
    }
    public class Inventory
    {
        public string Code { get; set; }
    }
}