forked from rongchao/epmet-cloud-rizhao
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.
28 lines
579 B
28 lines
579 B
5 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.dto.form.LoginFormDTO;
|
||
|
import com.epmet.dto.result.UserTokenResultDTO;
|
||
|
|
||
|
/**
|
||
|
* @Description 第三方-居民端、政府端登陆服务
|
||
|
* @author sun
|
||
|
*/
|
||
|
public interface ThirdLoginService {
|
||
|
|
||
|
/**
|
||
|
* @param formDTO
|
||
|
* @return
|
||
|
* @Author sun
|
||
|
* @Description 单客户-居民端微信小程序登录
|
||
|
**/
|
||
|
UserTokenResultDTO resiLogin(LoginFormDTO formDTO);
|
||
|
|
||
|
/**
|
||
|
* @param formDTO
|
||
|
* @return
|
||
|
* @Author sun
|
||
|
* @Description 单客户-政府端微信小程序登录
|
||
|
**/
|
||
|
UserTokenResultDTO workLogin(LoginFormDTO formDTO);
|
||
|
}
|