sjz
2025-06-13 171d81fdf8d730f6cb6869a003d81d17b5e81117
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace MES.Service.Dto.webApi
{
    public class ERPDBCK
    {
        public ErpDBCKA erpDbcka { get; set; }
        public List<ErpDBCKB> erpDbckB { get; set; }
    }
    public class ErpDBCKA
    {
        public string billno { get; set; }
        public string dj_lx { get; set; }
        public string db_lx1 { get; set; }
        public string db_fx { get; set; }
        public string db_lx { get; set; }
        public string yw_lx { get; set; }
        public string dj_zt { get; set; }
        public string sq_bm { get; set; }
        public string sq_zz { get; set; }
        public string sq_time { get; set; }
        public string dc_hz { get; set; }
        public string bz { get; set; }
        public string type { get; set; }
        public string erpid { get; set; }
    }
 
    public class ErpDBCKB
    {
        public string itemid { get; set; }
        public string unit { get; set; }
        public string quantity { get; set; }
        public string dc_org { get; set; }
        public string dc_depot { get; set; }
        public string dr_org { get; set; }
        public string dr_depot { get; set; }
        public string dc_hz { get; set; }
        public string dr_hz { get; set; }
        public string bz { get; set; }
        public string erpid { get; set; }
        public string eid { get; set; }
    }
}