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.
36 lines
807 B
36 lines
807 B
package com.epmet.service;
|
|
|
|
import com.epmet.dto.form.LoginFormDTO;
|
|
import com.epmet.dto.form.ThirdWxmpEnteOrgFormDTO;
|
|
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);
|
|
|
|
/**
|
|
* @param formDTO
|
|
* @return
|
|
* @Author sun
|
|
* @Description 单客户-选择组织,进入首页
|
|
**/
|
|
UserTokenResultDTO enterOrg(ThirdWxmpEnteOrgFormDTO formDTO);
|
|
}
|
|
|