Commit d0159bf8 by wangjian

2025-11-29 wj 修改

parent 821d4816
......@@ -10,6 +10,7 @@ import com.qianhe.common.enums.BusinessType;
import com.qianhe.common.exception.BusinessException;
import com.qianhe.common.utils.StringUtils;
import com.qianhe.domain.*;
import com.qianhe.mapper.SjGfjsYdjcjlMapper;
import com.qianhe.mapper.SjGfjsZdgzMapper;
import com.qianhe.mapper.SjGfjsZsdwwtcjMapper;
import com.qianhe.service.*;
......@@ -61,6 +62,8 @@ public class SjGfjsZsdwkhpjController extends BaseController
@Autowired
private SjGfjsZdgzMapper sjGfjsZdgzMapper;
@Autowired
private SjGfjsYdjcjlMapper sjGfjsYdjcjlMapper;
// @Autowired
// private SjGfjsFjxbzMapper sjGfjsFjxbzMapper;
......@@ -598,4 +601,45 @@ public class SjGfjsZsdwkhpjController extends BaseController
}
//穿透 分档结果详情加穿透(考核周期时间内:基层单位录入的问题详情)。
@GetMapping("/ctJclrwt")
public Map<String, Object> ctJclrwt(SjGfjsZsdwkhpj sjGfjsZsdwkhpj)
{
Map<String,Object> map = new HashMap<>();
Long deptId = sjGfjsZsdwkhpj.getDeptId();
String nd = sjGfjsZsdwkhpj.getNd();
String zqfw = sjGfjsZsdwkhpj.getZqfw();
String startRq=null;
String endRq=null;
if("上半年".equals(zqfw)){
startRq=nd+"-01";
endRq=nd+"-06";
}else {
startRq=nd+"-01";
endRq=nd+"-12";
}
//查询问题
SjGfjsZsdwwtcj sjGfjsZsdwwtcj =new SjGfjsZsdwwtcj();
sjGfjsZsdwwtcj.setDeptId(deptId);
sjGfjsZsdwwtcj.setStartRq(startRq);
sjGfjsZsdwwtcj.setEndRq(endRq);
sjGfjsZsdwwtcj.setJcjb("基层单位自查");
List<SjGfjsZsdwwtcj> sjGfjsZsdwwtcjs = sjGfjsYdjcjlMapper.selectSjGfjsZsdwwtcjList(sjGfjsZsdwwtcj);
map.put("code",HttpStatus.SUCCESS);
map.put("msg","查询成功");
map.put("khpjData", sjGfjsZsdwwtcjs);
return map;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment