Commit 0bf5227c by 徐高华

验证码错误提示

parent 2a4a791c
...@@ -240,7 +240,7 @@ public class QywxOpenController { ...@@ -240,7 +240,7 @@ public class QywxOpenController {
public RestResponse<Void> checkCode(Long openStaffId, String code) { public RestResponse<Void> checkCode(Long openStaffId, String code) {
ServiceResponse<Void> resp = this.openStaffApiService.checkCode(openStaffId, code); ServiceResponse<Void> resp = this.openStaffApiService.checkCode(openStaffId, code);
if (!resp.isSuccess()) { if (!resp.isSuccess()) {
return RestResponse.failure("9999", resp.getMessage()); return RestResponse.failure("9999", "验证码错误");
} }
return RestResponse.successResult(); return RestResponse.successResult();
} }
......
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