fix(企标稽查): 79729
This commit is contained in:
+2
-1
@@ -46,7 +46,8 @@
|
|||||||
(concat(u.realname,'(',u.username,')')) AS responseUser,
|
(concat(u.realname,'(',u.username,')')) AS responseUser,
|
||||||
irp.plan_complete_date,
|
irp.plan_complete_date,
|
||||||
irp.actual_complete_date,
|
irp.actual_complete_date,
|
||||||
irp.rectify_status
|
irp.rectify_status,
|
||||||
|
irp.inspect_report_id
|
||||||
FROM
|
FROM
|
||||||
`laws_enterprise_standard_inspect_rectify_plan` AS irp
|
`laws_enterprise_standard_inspect_rectify_plan` AS irp
|
||||||
LEFT JOIN sys_user AS u ON u.id = irp.response_user
|
LEFT JOIN sys_user AS u ON u.id = irp.response_user
|
||||||
|
|||||||
+1
@@ -56,6 +56,7 @@ public class EnterpriseStandardInspectRectifyPlanServiceImpl extends ServiceImpl
|
|||||||
public IPage<EnterpriseStandardInspectRectifyPlan> getRectifyPlan(String inspectId, Integer pageNo, Integer pageSize) {
|
public IPage<EnterpriseStandardInspectRectifyPlan> getRectifyPlan(String inspectId, Integer pageNo, Integer pageSize) {
|
||||||
IPage<EnterpriseStandardInspectRectifyPlan> page = new Page<>(pageNo, pageSize);
|
IPage<EnterpriseStandardInspectRectifyPlan> page = new Page<>(pageNo, pageSize);
|
||||||
esInspectRectifyPlanMapper.page(page, inspectId);
|
esInspectRectifyPlanMapper.page(page, inspectId);
|
||||||
|
setProperty(page.getRecords());
|
||||||
return page;
|
return page;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user