渗压设备分页查询修改

master
徐杰盟 2024-08-19 15:30:15 +08:00
parent c572612d1c
commit 4491ee8d94
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class OsmoticPressDeviceController extends AbstractCommonFileController{
Page<OsmoticPressDevice> data = service.page(page.getPageSo().toPage(), query);
data.getRecords().forEach(o -> o.setFiles(
fileService.getFiles(getGroupId(),o.getStationCode())
fileService.getFiles(getGroupId(),o.getProfileCode())
));
return R.ok(data);
}