办学质量监测教学评价系统
ageer
2024-02-27 a079ef44e53acd9e8df51dbb31cf5aea4f9be5bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.xmzs.common.wechat.service;
 
/**
 * 登陆服务接口
 *
 * @author https://github.com/yaphone
 * @date 创建时间:2017年5月13日 上午12:07:21
 * @version 1.0
 *
 */
public interface ILoginService {
 
    /**
     * 登陆
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:14:07
     * @return
     */
    boolean login();
 
    /**
     * 获取UUID
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:21:40
     * @param qrPath
     * @return
     */
    String getUuid();
 
    /**
     * 获取二维码图片
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:13:51
     * @param qrPath
     * @return
     */
    boolean getQR(String qrPath);
 
    /**
     * web初始化
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:14:13
     * @return
     */
    boolean webWxInit();
 
    /**
     * 微信状态通知
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:14:24
     */
    void wxStatusNotify();
 
    /**
     * 接收消息
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 上午12:14:37
     */
    void startReceiving();
 
    /**
     * 获取微信联系人
     *
     * @author https://github.com/yaphone
     * @date 2017年5月13日 下午2:26:18
     */
    void webWxGetContact();
 
    /**
     * 批量获取联系人信息
     *
     * @date 2017年6月22日 下午11:24:35
     */
    void WebWxBatchGetContact();
 
}