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;
|
}
|