Browse Source

feat: redis查询签约认证结果

lixuesong 3 years ago
parent
commit
a854e02238

+ 1 - 1
hnqz-upms/hnqz-upms-biz/src/main/java/com/qunzhixinxi/hnqz/admin/controller/SysUserSignCertController.java

@@ -196,7 +196,7 @@ public class SysUserSignCertController {
 		if (response == null) {
 			return R.failed("没有结果");
 		}
-		JSONObject jsonResult = JSONUtil.parseObj(response);
+		JSONObject jsonResult = JSONUtil.parseObj(response, true);
 		redisTemplate.delete(key);
 		return R.ok(jsonResult);
 	}