FinanceSummaryEstimateCostLineDTO.java
package com.tradecloud.dto.invoice;
import java.math.BigDecimal;
import com.tradecloud.domain.common.Currency;
import com.tradecloud.domain.costing.CostGroup;
public class FinanceSummaryEstimateCostLineDTO {
private BigDecimal value = new BigDecimal(0.0);
private Currency currency = new Currency("", "");
private String code = "";
private String name = "";
private CostGroup costGroup;
public CostGroup getCostGroup() {
return costGroup;
}
public void setCostGroup(CostGroup costGroup) {
this.costGroup = costGroup;
}
public BigDecimal getValue() {
return value;
}
public void setValue(BigDecimal value) {
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Currency getCurrency() {
return currency;
}
public void setCurrency(Currency currency) {
this.currency = currency;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}