导出包公表格

This commit is contained in:
2025-06-25 14:47:45 +08:00
parent b317c3541c
commit 24b9b081cb
6 changed files with 73 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
package com.ruoyi.oa.service.impl;
import cn.hutool.core.bean.BeanUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ruoyi.common.helper.LoginHelper;
import com.ruoyi.common.utils.StringUtils;
@@ -60,10 +61,10 @@ public class OaProjectReportServiceImpl implements IOaProjectReportService {
*/
@Override
public List<OaProjectReportVo> queryList(OaProjectReportBo bo) {
QueryWrapper<OaProjectReport> lqw = ClearbuildQueryWrapper(bo);
return baseMapper.selectVoList(lqw);
return baseMapper.selectAll(bo);
}
private QueryWrapper<OaProjectReport> buildQueryWrapper(OaProjectReportBo bo) {
Map<String, Object> params = bo.getParams();
QueryWrapper<OaProjectReport> lqw = Wrappers.query();