hao
2025-10-08 3b688a2758a44d240b9673dccb69511832116435
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
58
59
using System.Collections.Generic;
 
namespace MES.Service.Dto.webApi
{
    public class ERPZJDB
    {
      
        public ERPZJDBA ERPZJDBA { get; set; } = new ERPZJDBA();
        public List<ERPZJDBB> ERPZJDBB { get; set; } = new List<ERPZJDBB>();
    }
 
    public class ERPZJDBA
    {
        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? dc_kc { get; set; }       // 调出库存组织
        public string? dr_kc { get; set; }       // 调入库存组织
        public string? dc_hz { get; set; }       // 调出货主
        public string? dr_hz { get; set; }       // 调入货主
        public string? dr_ck { get; set; }       // 调入仓库
        public string? dc_bm { get; set; }       // 调出部门
        public string? dr_bm { get; set; }       // 调入部门
        public string? bz { get; set; }          // 备注
        public string type { get; set; }        // type
        public string? erpid { get; set; }       // 调拨出库单id
        public string? GYS { get; set; }       // 供应商
 
    }
 
    public class ERPZJDBB
    {
        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; }       // 调拨出库行id
        public string? eid { get; set; }         // 调拨出库头id
        public string? YD_lx { get; set; }         // 源单类型
        public string? yd_bm { get; set; }         // 源单编号
        public string? dd_lx { get; set; }         // 订单类型
        public string? dd_bm { get; set; }         // 订单编号
        public string? tzd_dh { get; set; }         // 通知单单号
 
 
 
    }
}