use of com.netsteadfast.greenstep.bsc.vo.BscMixDataVO in project bamboobsc by billchen198318.
the class KpiServiceImpl method findForMixData.
@Override
public DefaultResult<List<BscMixDataVO>> findForMixData(String visionOid, String orgId, String empId, String nextType, String nextId, List<String> kpiIds) throws ServiceException, Exception {
DefaultResult<List<BscMixDataVO>> result = new DefaultResult<List<BscMixDataVO>>();
List<BscMixDataVO> searchList = this.kpiDAO.findForMixData(this.getMixDataQueryParam(visionOid, orgId, empId, nextType, nextId, kpiIds));
if (null != searchList && searchList.size() > 0) {
result.setValue(searchList);
} else {
result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA)));
}
return result;
}
Aggregations