派生自 projectDept/qhighschool

EricsHu
2023-04-10 5196a1d1e00ced009a2d4e8ea0aa5f3bb7cefe33
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
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);
//    Result isBindWx(String userId);
    
//    Result getSignature(String url);
 
}