forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
6 years ago
|
package com.epmet.controller;
|
||
|
|
||
|
import com.epmet.common.token.annotation.Login;
|
||
|
import com.epmet.common.token.dto.form.LoginByPassWordFormDTO;
|
||
|
import com.epmet.common.token.dto.form.LoginByWxCodeFormDTO;
|
||
|
import com.epmet.common.token.dto.result.UserTokenResultDTO;
|
||
|
import com.epmet.commons.tools.utils.Result;
|
||
|
import com.epmet.commons.tools.validator.ValidatorUtils;
|
||
|
import com.epmet.service.LoginService;
|
||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||
|
import org.springframework.web.bind.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* @Description 通用登陆接口
|
||
|
* @Author yinzuomei
|
||
|
* @Date 2020/3/14 13:58
|
||
|
*/
|
||
|
@RestController
|
||
|
@RequestMapping("login")
|
||
|
public class LoginController {
|
||
|
@Autowired
|
||
|
private LoginService loginService;
|
||
|
|
||
|
/**
|
||
|
* @param formDTO
|
||
|
* @return com.epmet.commons.tools.utils.Result<java.lang.String>
|
||
|
* @Author yinzuomei
|
||
|
* @Description 微信小程序登录
|
||
|
* @Date 2020/3/14 14:35
|
||
|
**/
|
||
|
@PostMapping("loginbywxcode")
|
||
|
public Result<UserTokenResultDTO> loginByWxCode(@RequestBody LoginByWxCodeFormDTO formDTO) {
|
||
|
//效验数据
|
||
|
ValidatorUtils.validateEntity(formDTO);
|
||
|
return loginService.loginByWxCode(formDTO);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param formDTO
|
||
|
* @return com.epmet.commons.tools.utils.Result<com.epmet.dto.UserTokenResultDTO>
|
||
|
* @Author yinzuomei
|
||
|
* @Description 手机号+密码登录接口
|
||
|
* @Date 2020/3/14 19:46
|
||
|
**/
|
||
|
@PostMapping("loginbypassword")
|
||
|
public Result<UserTokenResultDTO> loginByPassword(@RequestBody LoginByPassWordFormDTO formDTO) {
|
||
|
//效验数据
|
||
|
ValidatorUtils.validateEntity(formDTO);
|
||
|
return loginService.loginByPassword(formDTO);
|
||
|
}
|
||
|
}
|