hao
2025-08-18 1a09e10891586f227bec656d92ad27382f0412a2
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
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 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
    }
}