张天森
2022-10-10 cf278d818b0f9d6b6b4f86334cb00fb114745ca8
flower_city/src/main/java/com/dg/core/controller/UserController.java
@@ -145,6 +145,18 @@
        return IUserService.loginByAccount(phonenumber,code);
    }
    @ApiOperation("通过手机号获取用户信息 登录")
    @PostMapping(value = "/loginPhionne")
    public ResultData loginPhionne(@RequestParam String phonenumber)
    {
        if(StringUtils.isEmpty(phonenumber))
        {
            return ResultData.error("请输入手机号");
        }
        return IUserService.loginByPhonenumber(phonenumber);
    }
    /**
     * 查询列表
     *