印章审核回调

This commit is contained in:
qitz
2024-03-20 09:14:17 +08:00
parent a64aa29a4e
commit cf42c93c6d
5 changed files with 103 additions and 2 deletions
@@ -77,6 +77,22 @@ public class MsSignSealController extends BaseController {
}
/**
* 印章审核回调
*/
@Anonymous
@PostMapping("/sealCheckCallback")
public AjaxResult sealCheckCallback() throws Exception {
boolean checkResult= SignVerifyUtils.checkSignuter();
if(checkResult){
String reqbodystr =SignVerifyUtils.getRequestBody();
return msSignSealService.sealCheckCallback(reqbodystr);
}else {
return AjaxResult.error("error");
}
}
/**
* 查询案件进度
*/