|
|
|
@@ -5,8 +5,10 @@ import com.iformall.utils.HttpUtil; |
|
|
|
import com.iformall.utils.sign.SignUtils; |
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import io.swagger.annotations.ApiOperation; |
|
|
|
|
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.util.MultiValueMap; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
@@ -29,9 +31,9 @@ public class UserBasicInfoController extends BaseController { |
|
|
|
*/ |
|
|
|
@PostMapping("/register") |
|
|
|
@ApiOperation(value = "用户注册", notes = "") |
|
|
|
public ResultData userRegister(@RequestParam String userName,@RequestParam String phone) { |
|
|
|
logger.info("UserBasicInfoController >>>>>>>> userName >>>>>>>>>>>>>>>>>"+userName); |
|
|
|
logger.info("UserBasicInfoController >>>>>>>> phone >>>>>>>>>>>>>>>>>"+phone); |
|
|
|
public ResultData userRegister(@RequestBody MultiValueMap<String,String> map) { |
|
|
|
logger.info("UserBasicInfoController >>>>>>>>>>>>>>>>>>>>>>>>>"+map.toString()); |
|
|
|
// logger.info("UserBasicInfoController >>>>>>>>phone >>>>>>>>>>>>>>>>>"+phone); |
|
|
|
|
|
|
|
return new ResultData(); |
|
|
|
} |
|
|
|
|