UserController.java 915 Bytes
package org.nafmii.controller;

import org.nafmii.result.Result;
import org.nafmii.service.UserService;
import org.nafmii.vo.UserVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author:zhoujh
 * @Function:TODO
 * @date 2021/4/25 10:10
 * @ClassName:
 * @version:
 * @remark:
 */
@RestController
@RequestMapping("/auth")
public class UserController {
    @Autowired
    private UserService userService;
    @PostMapping("/login")
    @ResponseBody
    public Result<UserVO> login (){
        Result<UserVO> login =  userService.login();
        return login;
    }


}