ExportInvoiceReportingBaseDTO.java

package com.tradecloud.dto.export;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Created by ds on 2014/11/17.
 */
@XmlRootElement(name = "ExportInvoiceReportingDTO")
@XmlAccessorType(XmlAccessType.FIELD)
public class ExportInvoiceReportingBaseDTO {
    @XmlAttribute(required = true)
    private Long id;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }
}