CustomsWorksheetDTO.java

package com.tradecloud.dto.api.invoice;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.Date;
import java.util.List;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "CustomsWorksheet")
public class CustomsWorksheetDTO {

    private List<DeclarationInvoiceDTO> declarationInvoiceDTOList;
    private String file;
    private String lrn;
    private String mrn;
    private Integer cpcCode;
    private String clearingAgent;
    private String importer;
    private String exporter;
    private String transportDocument;
    private Date issuedDate;
    private String vesselOrFlightName;
    private String houseDocument;
    private Date shippedOnBoard;

    public List<DeclarationInvoiceDTO> getDeclarationInvoiceDTOList() {
        return declarationInvoiceDTOList;
    }

    public void setDeclarationInvoiceDTOList(List<DeclarationInvoiceDTO> declarationInvoiceDTOList) {
        this.declarationInvoiceDTOList = declarationInvoiceDTOList;
    }

    public String getFile() {
        return file;
    }

    public void setFile(String file) {
        this.file = file;
    }

    public String getLrn() {
        return lrn;
    }

    public void setLrn(String lrn) {
        this.lrn = lrn;
    }

    public String getMrn() {
        return mrn;
    }

    public void setMrn(String mrn) {
        this.mrn = mrn;
    }

    public Integer getCpcCode() {
        return cpcCode;
    }

    public void setCpcCode(Integer cpcCode) {
        this.cpcCode = cpcCode;
    }

    public String getClearingAgent() {
        return clearingAgent;
    }

    public void setClearingAgent(String clearingAgent) {
        this.clearingAgent = clearingAgent;
    }

    public String getImporter() {
        return importer;
    }

    public void setImporter(String importer) {
        this.importer = importer;
    }

    public String getExporter() {
        return exporter;
    }

    public void setExporter(String exporter) {
        this.exporter = exporter;
    }

    public String getTransportDocument() {
        return transportDocument;
    }

    public void setTransportDocument(String transportDocument) {
        this.transportDocument = transportDocument;
    }

    public Date getIssuedDate() {
        return issuedDate;
    }

    public void setIssuedDate(Date issuedDate) {
        this.issuedDate = issuedDate;
    }

    public String getVesselOrFlightName() {
        return vesselOrFlightName;
    }

    public void setVesselOrFlightName(String vesselOrFlightName) {
        this.vesselOrFlightName = vesselOrFlightName;
    }

    public String getHouseDocument() {
        return houseDocument;
    }

    public void setHouseDocument(String houseDocument) {
        this.houseDocument = houseDocument;
    }

    public Date getShippedOnBoard() {
        return shippedOnBoard;
    }

    public void setShippedOnBoard(Date shippedOnBoard) {
        this.shippedOnBoard = shippedOnBoard;
    }
}