|
|
|
package com.epmet.controller;
|
|
|
|
|
|
|
|
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.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
}
|