use of com.netsteadfast.greenstep.po.hbm.BbEmployee in project bamboobsc by billchen198318.
the class DegreeFeedbackProjectListAction method loadDataForList.
private void loadDataForList() throws ServiceException, Exception {
BbEmployee employee = this.employeeService.findByAccountId(this.getAccountId());
if (null == employee) {
throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.DATA_ERRORS));
}
DefaultResult<List<DegreeFeedbackProjectVO>> result = this.degreeFeedbackProjectService.findByPublishFlag2ValueObject(YesNo.YES, employee.getEmpId());
if (result.getValue() != null) {
this.projects = result.getValue();
}
}
Aggregations