派生自 projectDept/qhighschool

EricsHu
2023-05-09 3adefa44b77cae70f37b573560ed480c2e56768b
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
package com.qxueyou.scc.wx.service;
 
import com.alibaba.fastjson.JSONObject;
import com.qxueyou.scc.base.model.Result;
import com.qxueyou.scc.teach.student.model.StuStudent;
 
import java.util.Map;
 
public interface IWechatService {
 
    /**
     * 查询用户
     * @param code
     * @param type
     * @return
     *
     * @author 李岩龙
     * @date 2021年4月2日 下午3:31:05
     */
 
    JSONObject getSessionKeyOrOpenId(String code);
 
    Result getNumber(String tonken, String number);
 
    JSONObject gettoken(String appid,String secret);
 
    JSONObject getUser(String token,String openId);
//    Result isBindWx(String userId);
    
//    Result getSignature(String url);
 
}