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.
20 lines
404 B
20 lines
404 B
package com.epmet.service;
|
|
|
|
import com.epmet.dto.form.SsoLoginFormDTO;
|
|
import com.epmet.dto.result.SsoLoginResultDTO;
|
|
|
|
/**
|
|
* @Author zxc
|
|
* @DateTime 2021/1/18 下午4:34
|
|
*/
|
|
public interface SsoService {
|
|
|
|
/**
|
|
* @Description 0、入口:得到token
|
|
* @Param formDTO
|
|
* @author zxc
|
|
* @date 2021/1/18 下午4:59
|
|
*/
|
|
SsoLoginResultDTO ssoLogin(SsoLoginFormDTO formDTO);
|
|
|
|
}
|
|
|