LiteSummaryReportDTO.java
package com.tradecloud.dto.consignment.lite;
import com.tradecloud.dto.shipment.actualsummarycosting.LiteShipmentDTO;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by ds on 2016/11/23.
*/
@XmlRootElement(name = "CoreSummaryReport")
@XmlAccessorType(XmlAccessType.FIELD)
public class LiteSummaryReportDTO {
private LiteConsignmentDTO consignmentDTO;
private LiteShipmentDTO shipmentDTO;
public LiteConsignmentDTO getConsignmentDTO() {
return consignmentDTO;
}
public void setConsignmentDTO(LiteConsignmentDTO consignmentDTO) {
this.consignmentDTO = consignmentDTO;
}
public LiteShipmentDTO getShipmentDTO() {
return shipmentDTO;
}
public void setShipmentDTO(LiteShipmentDTO shipmentDTO) {
this.shipmentDTO = shipmentDTO;
}
}