12-05-事故管理-事故上报、事故调查-修改

This commit is contained in:
2025-12-08 19:28:29 +08:00
parent f62c542684
commit 4450f82717

View File

@ -89,6 +89,7 @@ public class HseSafetySgdcServiceImpl extends ServiceImpl<HseSafetySgdcMapper, H
public TableDataInfo<HseSafetySgdcVo> queryPageList(HseSafetySgdcBo bo, PageQuery pageQuery) { public TableDataInfo<HseSafetySgdcVo> queryPageList(HseSafetySgdcBo bo, PageQuery pageQuery) {
LambdaQueryWrapper<HseSafetySgdc> lqw = buildQueryWrapper(bo); LambdaQueryWrapper<HseSafetySgdc> lqw = buildQueryWrapper(bo);
Page<HseSafetySgdcVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw); Page<HseSafetySgdcVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw);
setValue(result.getRecords());
return TableDataInfo.build(result); return TableDataInfo.build(result);
} }