|
@@ -70,7 +70,7 @@ public class OperationManagementFacade {
|
|
|
BeanUtil.copyProperties(operationInfoPage, getOperationPageDTOPage);
|
|
|
List<GetOperationPageDTO> getOperationPageDTOList = BeanUtil.listCopyTo(operationInfoPage.getRecords(), GetOperationPageDTO.class);
|
|
|
getOperationPageDTOList.forEach(i -> {
|
|
|
- i.setIsMapping(StringUtil.isBlank(i.getIsMapping()) ? "未匹配" : "已匹配");
|
|
|
+ i.setIsMapping(StringUtil.isBlank(i.getStandard()) ? "未匹配" : "已匹配");
|
|
|
});
|
|
|
|
|
|
getOperationPageDTOPage.setRecords(getOperationPageDTOList);
|