package com.bwie.controller; import com.bwie.common.domain.User; import com.bwie.common.result.Result; import com.bwie.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/user") public class UserController { @Autowired private UserService userService; @GetMapping("/findUserByUserPhone/{userPhone}") public Result findUserByUserPhone(@PathVariable String userPhone){ User user=userService.findUserByUserPhone(userPhone); return Result.success(user); } }