ApiRegisterController.java
1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.gxb.modules.api.controller;
import com.gxb.common.utils.R;
import com.gxb.common.validator.Assert;
import com.gxb.modules.api.annotation.AuthIgnore;
import com.gxb.modules.api.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 注册
* @author chenshun
* @email sunlightcs@gmail.com
* @date 2017-03-26 17:27
*/
@RestController
@RequestMapping("/api")
public class ApiRegisterController {
@Autowired
private UserService userService;
/**
* 注册
*/
@AuthIgnore
@PostMapping("register")
public R register(String mobile, String password){
Assert.isBlank(mobile, "手机号不能为空");
Assert.isBlank(password, "密码不能为空");
userService.save(mobile, password);
return R.ok();
}
}