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.
|
|
|
package com.epmet.service;
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.utils.Result;
|
|
|
|
import com.epmet.dto.form.LoginByPhoneFormDTO;
|
|
|
|
import com.epmet.dto.form.SendSmsCodeFormDTO;
|
|
|
|
import com.epmet.dto.result.UserTokenResultDTO;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Description 政府端登录
|
|
|
|
* @Author yinzuomei
|
|
|
|
* @Date 2020/4/18 10:32
|
|
|
|
*/
|
|
|
|
public interface GovLoginService {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param formDTO
|
|
|
|
* @return com.epmet.commons.tools.utils.Result
|
|
|
|
* @Author yinzuomei
|
|
|
|
* @Description 登录-发送验证码
|
|
|
|
* @Date 2020/4/18 10:59
|
|
|
|
**/
|
|
|
|
Result sendSmsCode(SendSmsCodeFormDTO formDTO);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param formDTO
|
|
|
|
* @return com.epmet.commons.tools.utils.Result<com.epmet.common.token.dto.result.UserTokenResultDTO>
|
|
|
|
* @Author yinzuomei
|
|
|
|
* @Description 手机验证码登录
|
|
|
|
* @Date 2020/4/18 21:11
|
|
|
|
**/
|
|
|
|
Result<UserTokenResultDTO> loginByPhone(LoginByPhoneFormDTO formDTO);
|
|
|
|
}
|