111
k94314517
2023-08-24 06997ad92d77b7dd8a002df16b5b0cadc528d5f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}