|
@@ -585,7 +585,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements IU
|
|
|
return Result.error().message("参数为空").result(ResultCode.NO_DATA);
|
|
|
}
|
|
|
Integer userId = bindVO.getUserId();
|
|
|
- String vciNum = bindVO.getVciSn();
|
|
|
+ String vciNum = bindVO.getVciNum();
|
|
|
|
|
|
LambdaQueryWrapper<VciInfo> vciInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
vciInfoLambdaQueryWrapper.eq(VciInfo::getVciNum, vciNum);
|
|
@@ -636,7 +636,7 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements IU
|
|
|
return Result.error().message("参数为空").result(ResultCode.NO_DATA);
|
|
|
}
|
|
|
Integer userId = bindVO.getUserId();
|
|
|
- String vciNum = bindVO.getVciSn();
|
|
|
+ String vciNum = bindVO.getVciNum();
|
|
|
LambdaQueryWrapper<VciInfo> vciInfoLambdaQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
vciInfoLambdaQueryWrapper.eq(VciInfo::getVciNum, vciNum);
|
|
|
VciInfo vciInfo = vciInfoService.getOne(vciInfoLambdaQueryWrapper);
|