package doumeemes.service.system;
|
|
import doumeemes.dao.ext.dto.WxLoginDTO;
|
import doumeemes.dao.ext.dto.WxLoginOutDTO;
|
import doumeemes.dao.ext.vo.WxLoginVO;
|
import doumeemes.dao.system.dto.LoginDTO;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/8/11 10:13
|
*/
|
public interface WxLoginService {
|
|
WxLoginVO wxLogin(String code, HttpServletRequest request);
|
|
|
String wxLoginByPassword (WxLoginDTO dto, HttpServletRequest request);
|
|
void wxLoginOut(WxLoginOutDTO wxLoginOutDTO);
|
}
|