CostFormulaCosting.java
package com.tradecloud.domain.costing;
import java.util.List;
// Do NOT add @Entity here
// This class just acts as a container for your projection results
public class CostFormulaCosting extends CostFormula{
private List<Long> orgOunitIds;
private Long freightForwarderId;
public List<Long> getOrgOunitIds() {
return orgOunitIds;
}
public void setOrgOunitIds(List<Long> orgOunitIds) {
this.orgOunitIds = orgOunitIds;
}
public Long getFreightForwarderId() {
return freightForwarderId;
}
public void setFreightForwarderId(Long freightForwarderId) {
this.freightForwarderId = freightForwarderId;
}
}