huwhois лет назад: 4
Родитель
Сommit
33a223a37f
1 измененных файлов с 13 добавлено и 2 удалено
  1. 13 2
      src/main/java/io/renren/modules/app/controller/AppRegisterController.java

+ 13 - 2
src/main/java/io/renren/modules/app/controller/AppRegisterController.java

17
import io.renren.modules.app.service.UserService;
17
import io.renren.modules.app.service.UserService;
18
import io.swagger.annotations.Api;
18
import io.swagger.annotations.Api;
19
import io.swagger.annotations.ApiOperation;
19
import io.swagger.annotations.ApiOperation;
20
21
import java.util.Map;
22
20
import org.springframework.beans.factory.annotation.Autowired;
23
import org.springframework.beans.factory.annotation.Autowired;
21
import org.springframework.web.bind.annotation.PostMapping;
24
import org.springframework.web.bind.annotation.PostMapping;
22
import org.springframework.web.bind.annotation.RequestBody;
25
import org.springframework.web.bind.annotation.RequestBody;
43
     * 注册短信验证码
46
     * 注册短信验证码
44
     */
47
     */
45
    @PostMapping("/mobilecode")
48
    @PostMapping("/mobilecode")
46
    public R mobileCode(String uuid, String phone) {
49
    public R mobileCode(@RequestBody Map<String, Object> params) {
50
        String uuid = (String) params.get("uuid");
51
        String phone = (String) params.get("phone");
52
47
        Assert.isNotPhone(phone);
53
        Assert.isNotPhone(phone);
48
54
55
        Assert.isBlank(uuid, "uuid不能为空");
56
49
        UserEntity user = userService.queryByUsername(phone);
57
        UserEntity user = userService.queryByUsername(phone);
50
        if (user != null) {
58
        if (user != null) {
51
            return R.error("手机号已注册");
59
            return R.error("手机号已注册");
84
     * 找回密码短信验证码
92
     * 找回密码短信验证码
85
     */
93
     */
86
    @PostMapping("/phonecode")
94
    @PostMapping("/phonecode")
87
    public R phoneCode(String uuid, String phone) {
95
    public R phoneCode(@RequestBody Map<String, Object> params) {
96
        String uuid = (String) params.get("uuid");
97
        String phone = (String) params.get("phone");
98
88
        UserEntity user = userService.queryByUsername(phone);
99
        UserEntity user = userService.queryByUsername(phone);
89
        if (user == null) {
100
        if (user == null) {
90
            return R.error("手机号未注册");
101
            return R.error("手机号未注册");