From 1d0aab13c3228e1bc9ca86dfaece2efdc6cce356 Mon Sep 17 00:00:00 2001 From: lixian7 <lixian7> Date: Sun, 26 Jul 2020 15:27:18 +0800 Subject: [PATCH] 绑定短信验证接口调整 --- domain/src/main/java/com/hikcreate/edl/pub/web/mobile/domain/impl/BindServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domain/src/main/java/com/hikcreate/edl/pub/web/mobile/domain/impl/BindServiceImpl.java b/domain/src/main/java/com/hikcreate/edl/pub/web/mobile/domain/impl/BindServiceImpl.java index 42f3ea4..49484c6 100644 --- a/domain/src/main/java/com/hikcreate/edl/pub/web/mobile/domain/impl/BindServiceImpl.java +++ b/domain/src/main/java/com/hikcreate/edl/pub/web/mobile/domain/impl/BindServiceImpl.java @@ -237,7 +237,7 @@ public class BindServiceImpl extends ServiceImpl<BindInfoMapper, ParkBindInfo> i String bindInfoStr = redisTemplate.opsForValue().get(key); if (StrUtil.isBlank(bindInfoStr)) { log.error("车辆绑定短信验证失败:未发起车辆绑定"); - return ResultGenerator.fail(StatusCode.BUSINESS_ERROR.getCode(), "已超时"); + return ResultGenerator.fail(StatusCode.BUSINESS_ERROR.getCode(), "绑定信息不正确"); } ParkBindInfo bindInfo = objectMapper.readValue(bindInfoStr, ParkBindInfo.class); -- libgit2 0.26.0