ShipmentACSReportCostGroupCellDTO.java
package com.tradecloud.dto.shipment.actualsummarycosting;
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 IntelliJ IDEA.
* User: ds
* Date: 2014/03/07
* Time: 7:39 AM
* To change this template use File | Settings | File Templates.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "CostGroupCell")
public class ShipmentACSReportCostGroupCellDTO {
@XmlAttribute(required = true)
String costLineName;
@XmlAttribute(required = true)
String spotRate;
@XmlAttribute(required = true)
String forwardRate;
@XmlAttribute(required = true)
String total;
@XmlAttribute(required = true)
String costLinePercentage;
public String getCostLineName() {
return costLineName;
}
public void setCostLineName(String costLineName) {
this.costLineName = costLineName;
}
public String getSpotRate() {
return spotRate;
}
public void setSpotRate(String spotRate) {
this.spotRate = spotRate;
}
public String getForwardRate() {
return forwardRate;
}
public void setForwardRate(String forwardRate) {
this.forwardRate = forwardRate;
}
public String getTotal() {
return total;
}
public void setTotal(String total) {
this.total = total;
}
public String getCostLinePercentage() {
return costLinePercentage;
}
public void setCostLinePercentage(String costLinePercentage) {
this.costLinePercentage = costLinePercentage;
}
}