bug修复

This commit is contained in:
18792927508
2024-04-25 18:15:59 +08:00
parent 3637a7d65d
commit bda663a740
8 changed files with 177 additions and 54 deletions
@@ -41,8 +41,7 @@ public class IdentityAuthenticationController extends BaseController {
@Anonymous
@GetMapping("/selectPCEIDtokenStatus")
public AjaxResult selectPCEIDtokenStatus(@RequestParam String eidToken) {
JSONObject tokenResult = identityAuthenticationService.selectPCEIDtokenStatus(eidToken);
return success(tokenResult);
return identityAuthenticationService.selectPCEIDtokenStatus(eidToken);
}
/**
@@ -250,7 +250,7 @@ public class MsCaseApplicationController extends BaseController {
* @return
*/
@GetMapping("/listMediator")
public AjaxResult listMediator( @RequestParam(value = "caseAppliId",required = false) Long caseAppliId) {
public AjaxResult listMediator( @RequestParam(value = "caseAppliId",required = true) Long caseAppliId) {
return caseApplicationService.listMediator(caseAppliId);
}
/**
@@ -310,7 +310,7 @@ public class MsCaseApplicationController extends BaseController {
*/
@PostMapping("/mediation")
public AjaxResult mediation(@RequestBody MsCaseApplicationReq req) throws EsignDemoException, InterruptedException {
if (req.getCaseFlowId() == null || req.getId() == null || req.getMediaResult()==null) {
if (req.getCaseFlowId() == null || req.getId() == null ) {
return error("参数校验失败");
}