TotalLandedCostTransactionCurrencyDTO.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;
import java.io.Serializable;
/**
* Created with IntelliJ IDEA.
* User: ds
* Date: 2014/05/02
* Time: 11:57 AM
* To change this template use File | Settings | File Templates.
*/
@XmlRootElement(name = "TotalLandedCostTransactionCurrencyDTO")
@XmlAccessorType(XmlAccessType.FIELD)
public class TotalLandedCostTransactionCurrencyDTO implements Serializable {
@XmlAttribute(required = true)
private String costLineName;
@XmlAttribute(required = true)
private String costLineValue;
@XmlAttribute(required = true)
private String costLineCurrency;
@XmlAttribute(required = true)
private String forwardRate;
public String getCostLineName() {
return costLineName;
}
public void setCostLineName(String costLineName) {
this.costLineName = costLineName;
}
public String getCostLineValue() {
return costLineValue;
}
public void setCostLineValue(String costLineValue) {
this.costLineValue = costLineValue;
}
public String getCostLineCurrency() {
return costLineCurrency;
}
public void setCostLineCurrency(String costLineCurrency) {
this.costLineCurrency = costLineCurrency;
}
public String getForwardRate() {
return forwardRate;
}
public void setForwardRate(String forwardRate) {
this.forwardRate = forwardRate;
}
}