SupplyPaymentReportResultsOrderDTO.java
package com.tradecloud.dto.invoice;
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 with IntelliJ IDEA.
* User: ds
* Date: 2014/04/11
* Time: 11:10 AM
* To change this template use File | Settings | File Templates.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "SupplyPaymentReportOrder")
public class SupplyPaymentReportResultsOrderDTO {
@XmlAttribute(required = true)
private String orderReference;
@XmlAttribute(required = true)
private String shippingReference;
@XmlAttribute(required = true)
private String paymentMethod;
@XmlAttribute (required = true)
private String paymentTerm;
@XmlAttribute(required = true)
private String LCBankReference;
public String getOrderReference() {
return orderReference;
}
public void setOrderReference(String orderReference) {
this.orderReference = orderReference;
}
public String getShippingReference() {
return shippingReference;
}
public void setShippingReference(String shippingReference) {
this.shippingReference = shippingReference;
}
public String getPaymentMethod() {
return paymentMethod;
}
public void setPaymentMethod(String paymentMethod) {
this.paymentMethod = paymentMethod;
}
public String getPaymentTerm() {
return paymentTerm;
}
public void setPaymentTerm(String paymentTerm) {
this.paymentTerm = paymentTerm;
}
public String getLCBankReference() {
return LCBankReference;
}
public void setLCBankReference(String LCBankReference) {
this.LCBankReference = LCBankReference;
}
}