GLC_ALCReportDTO.java
package com.tradecloud.dto.shipment.actualsummarycosting;
import javax.xml.bind.annotation.*;
import java.math.BigDecimal;
import java.util.List;
/**
* Created by ds on 2015/07/08.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "GLC_ALCReport")
public class GLC_ALCReportDTO {
@XmlElement(name = "ShipmentGLC_ALCReportDTO", required = true)
private List<ShipmentGLC_ALCReportDTO> shipmentGLC_alcReportDTOs;
@XmlElement(name = "OrderGLC_ALCReportDTO", required = true)
private List<OrderGLC_ALCReportDTO> orderGLC_alcReportDTOs;
@XmlAttribute(required = true)
private BigDecimal totalCostExVAT;
@XmlAttribute(required = true)
private String costingCurrency;
public List<OrderGLC_ALCReportDTO> getOrderGLC_alcReportDTOs() {
return orderGLC_alcReportDTOs;
}
public void setOrderGLC_alcReportDTOs(List<OrderGLC_ALCReportDTO> orderGLC_alcReportDTOs) {
this.orderGLC_alcReportDTOs = orderGLC_alcReportDTOs;
}
public List<ShipmentGLC_ALCReportDTO> getShipmentGLC_alcReportDTOs() {
return shipmentGLC_alcReportDTOs;
}
public void setShipmentGLC_alcReportDTOs(List<ShipmentGLC_ALCReportDTO> shipmentGLC_alcReportDTOs) {
this.shipmentGLC_alcReportDTOs = shipmentGLC_alcReportDTOs;
}
public BigDecimal getTotalCostExVAT() {
return totalCostExVAT;
}
public void setTotalCostExVAT(BigDecimal totalCostExVAT) {
this.totalCostExVAT = totalCostExVAT;
}
public String getCostingCurrency() {
return costingCurrency;
}
public void setCostingCurrency(String costingCurrency) {
this.costingCurrency = costingCurrency;
}
}