use of com.netsteadfast.greenstep.vo.PdcaOwnerVO in project bamboobsc by billchen198318.
the class PdcaLogicServiceImpl method createOwner.
private void createOwner(PdcaVO pdca, List<String> emplOids) throws ServiceException, Exception {
for (String oid : emplOids) {
EmployeeVO employee = this.findEmployeeData(oid);
PdcaOwnerVO pdcaOwner = new PdcaOwnerVO();
pdcaOwner.setPdcaOid(pdca.getOid());
pdcaOwner.setEmpId(employee.getEmpId());
this.pdcaOwnerService.saveObject(pdcaOwner);
}
}
Aggregations