派生自 projectDept/qhighschool

胡仁荣
2023-04-07 bc2fa8b08c72469e31433d1f9e70e8077f63d49b
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
package com.qxueyou.scc.wx.service;
 
import com.alibaba.fastjson.JSONObject;
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);
 
    String getNumber(String number);
//    Result isBindWx(String userId);
    
//    Result getSignature(String url);
 
}