啊鑫
2025-04-09 6e24f2d233034587da20066203b1be187aed051b
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
package com.gs.xiaomi.dto;
 
import lombok.Data;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import java.util.List;
 
@XmlAccessorType(XmlAccessType.FIELD)
@Data
public class EtHeader {
    @XmlElement(name = "zzasn")
    private String zzasn;
 
    @XmlElement(name = "zzasn_type")
    private String zzasnType;
 
    @XmlElement(name = "lifnr")
    private String lifnr;
 
    @XmlElement(name = "vendor_name")
    private String vendorName;
 
    @XmlElement(name = "zzship_addr")
    private String zzshipAddr;
 
    @XmlElement(name = "zzship_name")
    private String zzshipName;
 
    @XmlElement(name = "zzship_date")
    private String zzshipDate;
 
    @XmlElementWrapper(name = "items")
    @XmlElement(name = "item")
    private List<Item> items;
 
    @XmlElementWrapper(name = "BOX_ITEMS")
    @XmlElement(name = "boxItems")
    private List<BoxItem> boxItems;
 
    @XmlElementWrapper(name = "BOX_SUMS")
    @XmlElement(name = "boxSum")
    private List<BoxSum> boxSums;
}