OrderNotConsignedDTOList.java
package com.tradecloud.dto.order;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by ds on 2014/11/14.
*/
@XmlRootElement(name = "OrderNotConsignedDTOList")
@XmlAccessorType(XmlAccessType.FIELD)
public class OrderNotConsignedDTOList {
@XmlElement(name = "OrderNotConsignedDTO")
private List<OrderNotConsignedDTO> orderNotConsignedDTOList;
public List<OrderNotConsignedDTO> getOrderNotConsignedDTOList() {
return orderNotConsignedDTOList;
}
public void setOrderNotConsignedDTOList(List<OrderNotConsignedDTO> orderNotConsignedDTOList) {
this.orderNotConsignedDTOList = orderNotConsignedDTOList;
}
}