| | |
| | | import org.springblade.common.utils.SpringUtils; |
| | | import org.springblade.core.secure.utils.AuthUtil; |
| | | import org.springblade.core.tool.utils.BeanUtil; |
| | | import org.springblade.modules.house.excel.HouseExcel; |
| | | import org.springblade.modules.patrol.entity.PatrolRecord; |
| | | import org.springblade.modules.patrol.service.IPatrolRecordService; |
| | | import org.springblade.modules.patrol.vo.PatrolRecordVO; |
| | |
| | | for (TaskPlaceRectificationVO taskPlaceRectificationVO : taskPlaceRectificationVOS) { |
| | | StringBuilder builder = new StringBuilder(""); |
| | | List<PatrolRecordVO> patrolRecordVOList = taskPlaceRectificationVO.getPatrolRecordVOList(); |
| | | for (PatrolRecordVO patrolRecordVO : patrolRecordVOList) { |
| | | builder.append(patrolRecordVO.getItemsName()).append(";"); |
| | | for (int i = 0; i < patrolRecordVOList.size(); i++) { |
| | | builder.append(i + 1).append(" : ").append(patrolRecordVOList.get(i).getItemsName()).append("; "); |
| | | } |
| | | taskPlaceRectificationVO.setHiddenDanger(builder.toString()); |
| | | } |
| | |
| | | } |
| | | return copy; |
| | | } |
| | | |
| | | @Override |
| | | public List<HouseExcel> export(TaskPlaceRectificationVO taskPlaceRectificationVO) { |
| | | List<HouseExcel> houseExcels = null; //baseMapper.export(taskPlaceRectificationVO); |
| | | return houseExcels; |
| | | } |
| | | } |