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
| package com.zy.asrs.entity.param;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * Created by vincent on 2022/4/8
| */
| @Data
| public class OpenOrderPakinJDParam {
|
|
| private String orderNo;
| private String formId;
| private Integer id;
|
| private String srcBillNo;
|
| private String createDate;
|
| private String type;//类型 (1、整单上报 2、行号上报)
|
| private List<DetlDto2> matList;
|
| @Data
| public static class DetlDto2{
|
|
| private String matnr;
| private String maktx;
|
| private String batch;
| private String specs;
|
| private Double anfme;
|
| private String owner;
| private int beBatch;
|
| public DetlDto2(){}
| public DetlDto2(String matnr,String maktx,String batch,String specs,Double anfme,String owner,int beBatch){
| this.matnr=matnr;
| this.maktx=maktx;
| this.batch=batch;
| this.specs=specs;
| this.anfme=anfme;
| this.owner=owner;
| this.beBatch=beBatch;
| }
| }
|
| }
|
|