fix(企标稽查): 79729

This commit is contained in:
yjz
2024-01-30 16:11:02 +08:00
parent 95e9a07fb7
commit f4b8a5e28b
2 changed files with 3 additions and 1 deletions
@@ -46,7 +46,8 @@
(concat(u.realname,'(',u.username,')')) AS responseUser,
irp.plan_complete_date,
irp.actual_complete_date,
irp.rectify_status
irp.rectify_status,
irp.inspect_report_id
FROM
`laws_enterprise_standard_inspect_rectify_plan` AS irp
LEFT JOIN sys_user AS u ON u.id = irp.response_user
@@ -56,6 +56,7 @@ public class EnterpriseStandardInspectRectifyPlanServiceImpl extends ServiceImpl
public IPage<EnterpriseStandardInspectRectifyPlan> getRectifyPlan(String inspectId, Integer pageNo, Integer pageSize) {
IPage<EnterpriseStandardInspectRectifyPlan> page = new Page<>(pageNo, pageSize);
esInspectRectifyPlanMapper.page(page, inspectId);
setProperty(page.getRecords());
return page;
}