| | |
| | | private IndItemValueService indItemValueService; |
| | | |
| | | public List<IndItemValueVO> queryValue(String itemId) { |
| | | List<IndItemValueVO> result = new ArrayList<IndItemValueVO>(); |
| | | List<IndItemValueVO> result = new ArrayList<>(); |
| | | try { |
| | | QuerySourceValueDTO queryDto = indSqlUtils.getAtomSql(itemId); |
| | | return indItemValueService.getSourceValue(queryDto); |
| | | result = indItemValueService.getSourceValue(queryDto); |
| | | result.forEach(item -> { |
| | | item.setItemNo(queryDto.getItemNo()); |
| | | }); |
| | | } catch (Exception ex) { |
| | | ex.printStackTrace(); |
| | | } |