Commit b5ab2ceb by wangjian

2025-11-29 wj 修改

parent f20676c9
......@@ -595,8 +595,8 @@ public class SjFybpZbController extends BaseController
int lastRowNum = sheet.getLastRowNum();
// 通过循环,逐行取出表中每行数据
for(int i=0;i<=lastRowNum;i++) {//跳过第一行和第二行
if(i <= 4){
for(int i=0;i<=4;i++) {//跳过第一行和第二行
if(i <= 3){
continue;
}
// 获取行
......
......@@ -345,7 +345,7 @@ public class SjGfjsYdjcjlController extends BaseController
}
@PostMapping("/sh")
public AjaxResult sh(SjGfjsYdjcjl ydjl)
public AjaxResult sh(@RequestBody SjGfjsYdjcjl ydjl)
{
return toAjax(sjGfjsYdjcjlService.sh(ydjl));
}
......
......@@ -605,7 +605,7 @@ public class SjGfjsZsdwkhpjController extends BaseController
//穿透 分档结果详情加穿透(考核周期时间内:基层单位录入的问题详情)。
@GetMapping("/ctJclrwt")
public Map<String, Object> ctJclrwt(SjGfjsZsdwkhpj sjGfjsZsdwkhpj)
public AjaxResult ctJclrwt(SjGfjsZsdwkhpj sjGfjsZsdwkhpj)
{
Map<String,Object> map = new HashMap<>();
......@@ -637,7 +637,8 @@ public class SjGfjsZsdwkhpjController extends BaseController
map.put("code",HttpStatus.SUCCESS);
map.put("msg","查询成功");
map.put("khpjData", sjGfjsZsdwwtcjs);
return map;
//return sjGfjsZsdwwtcjs;
return AjaxResult.success(sjGfjsZsdwwtcjs);
}
......
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