LiteShipmentDTO.java

package com.tradecloud.dto.shipment.actualsummarycosting;

import com.tradecloud.domain.model.shipment.ShipmentState;
import com.tradecloud.dto.consignment.lite.LiteContainerDTO;
import com.tradecloud.dto.consignment.lite.LiteOrderDTO;

import java.util.List;

public class LiteShipmentDTO {
    private String shipmentReference;
    private ShipmentState shipmentState;
    private String shipmentReportUrl;
    private String incoterm;
    private String placeOfLoading;
    private String placeOfDischarge;
    private String latestShipmentDate;
    private String finalisedDate;
    private String orderTotalExVat;
    private String orderTotalInclVat;
    private String orderVat;
    private List<LiteOrderDTO> orderDTOList;
    private List<LiteContainerDTO> containerDTOList;
    private String foreignCurrencyTotal;

    public String getShipmentReference() {
        return shipmentReference;
    }

    public void setShipmentReference(String shipmentReference) {
        this.shipmentReference = shipmentReference;
    }

    public ShipmentState getShipmentState() {
        return shipmentState;
    }

    public void setShipmentState(ShipmentState shipmentState) {
        this.shipmentState = shipmentState;
    }

    public String getShipmentReportUrl() {
        return shipmentReportUrl;
    }

    public void setShipmentReportUrl(String shipmentReportUrl) {
        this.shipmentReportUrl = shipmentReportUrl;
    }

    public String getIncoterm() {
        return incoterm;
    }

    public void setIncoterm(String incoterm) {
        this.incoterm = incoterm;
    }

    public String getPlaceOfLoading() {
        return placeOfLoading;
    }

    public void setPlaceOfLoading(String placeOfLoading) {
        this.placeOfLoading = placeOfLoading;
    }

    public String getPlaceOfDischarge() {
        return placeOfDischarge;
    }

    public void setPlaceOfDischarge(String placeOfDischarge) {
        this.placeOfDischarge = placeOfDischarge;
    }

    public String getLatestShipmentDate() {
        return latestShipmentDate;
    }

    public void setLatestShipmentDate(String latestShipmentDate) {
        this.latestShipmentDate = latestShipmentDate;
    }

    public String getFinalisedDate() {
        return finalisedDate;
    }

    public void setFinalisedDate(String finalisedDate) {
        this.finalisedDate = finalisedDate;
    }

    public String getOrderTotalExVat() {
        return orderTotalExVat;
    }

    public void setOrderTotalExVat(String orderTotalExVat) {
        this.orderTotalExVat = orderTotalExVat;
    }

    public String getOrderTotalInclVat() {
        return orderTotalInclVat;
    }

    public void setOrderTotalInclVat(String orderTotalInclVat) {
        this.orderTotalInclVat = orderTotalInclVat;
    }

    public String getOrderVat() {
        return orderVat;
    }

    public void setOrderVat(String orderVat) {
        this.orderVat = orderVat;
    }

    public List<LiteOrderDTO> getOrderDTOList() {
        return orderDTOList;
    }

    public void setOrderDTOList(List<LiteOrderDTO> orderDTOList) {
        this.orderDTOList = orderDTOList;
    }

    public List<LiteContainerDTO> getContainerDTOList() {
        return containerDTOList;
    }

    public void setContainerDTOList(List<LiteContainerDTO> containerDTOList) {
        this.containerDTOList = containerDTOList;
    }

    public String getForeignCurrencyTotal() {
        return foreignCurrencyTotal;
    }

    public void setForeignCurrencyTotal(String foreignCurrencyTotal) {
        this.foreignCurrencyTotal = foreignCurrencyTotal;
    }
}