Your Name
2022-12-06 fb438d165a774f22737c610cf77be26a20c2dbfc
service-user/src/main/java/com/java110/user/bmo/userLogin/impl/GetUserLoginBMOImpl.java
@@ -64,7 +64,10 @@
        List<UserDto> userDtos = userInnerServiceSMOImpl.getUsers(userDto);
        Assert.listOnlyOne(userDtos, "用户不存在");
        if(userDtos == null || userDtos.size()< 1){
            throw new IllegalArgumentException("用户不存在");
        }
        String hcCode = PREFIX_CODE + GenerateCodeFactory.getUUID();
        CommonCache.setValue(hcCode, JSONObject.toJSONString(userDtos.get(0)), CommonCache.defaultExpireTime);
        JSONObject paramOut = new JSONObject();