|
|
|
@ -95,16 +95,14 @@ public class CheckReportManager {
|
|
|
|
|
return checkTypeItemDTOList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<CheckTypeDTO> getCheckTypeDTOParent(String type) {
|
|
|
|
|
public List<CheckTypeDTO> getCheckTypeDtoParent(String type) {
|
|
|
|
|
List<CheckTypeDTO> checkTypeDtoS = new ArrayList<>();
|
|
|
|
|
SysDictData sysDictData =new SysDictData();
|
|
|
|
|
sysDictData.setDictType(type);
|
|
|
|
|
List<SysDictData> list = dictDataService.selectDictDataList(sysDictData);
|
|
|
|
|
list.forEach(sysDictData1 -> {
|
|
|
|
|
checkTypeDtoS.add(CheckTypeDTO.builder()
|
|
|
|
|
.typeName(sysDictData1.getDictLabel())
|
|
|
|
|
.checkType(sysDictData1.getDictValue()).build());
|
|
|
|
|
});
|
|
|
|
|
list.forEach(sysDictData1 -> checkTypeDtoS.add(CheckTypeDTO.builder()
|
|
|
|
|
.typeName(sysDictData1.getDictLabel())
|
|
|
|
|
.checkType(sysDictData1.getDictValue()).build()));
|
|
|
|
|
return checkTypeDtoS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|