ExportInvoicesReportDTOList.java

package com.tradecloud.dto.export;

import java.io.Serializable;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Created by ds on 2014/11/10.
 */
@XmlRootElement(name = "ExportInvoicesReportDTOList")
@XmlAccessorType(XmlAccessType.FIELD)
public class ExportInvoicesReportDTOList implements Serializable {

    @XmlAttribute(required = true)
    private String reportName;

    @XmlAttribute(required = true)
    private String reportDate;

    @XmlAttribute(required = true)
    private String createdDateRange;

    @XmlAttribute(required = true)
    private String countryOfDestination;

    @XmlAttribute(required = true)
    private String division;

    @XmlAttribute(required = true)
    private String consignee;

    @XmlElement
    private List<ExportInvoicesReportDTO> list;

    @XmlAttribute
    private String logo;
    private String consigneeAddress;
    private String exporter;
    private String exporterAddress;
    private String shipmentReference;

    public String getReportName() {
        return reportName;
    }

    public void setReportName(String reportName) {
        this.reportName = reportName;
    }

    public String getReportDate() {
        return reportDate;
    }

    public void setReportDate(String reportDate) {
        this.reportDate = reportDate;
    }

    public String getCreatedDateRange() {
        return createdDateRange;
    }

    public void setCreatedDateRange(String createdDateRange) {
        this.createdDateRange = createdDateRange;
    }

    public String getCountryOfDestination() {
        return countryOfDestination;
    }

    public void setCountryOfDestination(String countryOfDestination) {
        this.countryOfDestination = countryOfDestination;
    }

    public String getDivision() {
        return division;
    }

    public void setDivision(String division) {
        this.division = division;
    }

    public String getConsignee() {
        return consignee;
    }

    public void setConsignee(String consignee) {
        this.consignee = consignee;
    }

    public List<ExportInvoicesReportDTO> getList() {
        return list;
    }

    public void setList(List<ExportInvoicesReportDTO> list) {
        this.list = list;
    }

    public String getLogo() {
        return logo;
    }

    public void setLogo(String logo) {
        this.logo = logo;
    }

    public void setConsigneeAddress(String consigneeAddress) {
        this.consigneeAddress = consigneeAddress;
    }

    public String getConsigneeAddress() {
        return consigneeAddress;
    }

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

    public String getExporter() {
        return exporter;
    }

    public void setExporterAddress(String exporterAddress) {
        this.exporterAddress = exporterAddress;
    }

    public String getExporterAddress() {
        return exporterAddress;
    }

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

    public String getShipmentReference() {
        return shipmentReference;
    }
}