|
@@ -15,6 +15,7 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import io.swagger.annotations.ApiResponse;
|
|
|
import io.swagger.annotations.ApiResponses;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -29,6 +30,7 @@ import java.util.Objects;
|
|
|
*/
|
|
|
@Api(tags = "用户接口")
|
|
|
@RestController
|
|
|
+@Slf4j
|
|
|
@RequestMapping(value = "/api/user")
|
|
|
public class UserController {
|
|
|
|