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);
|
|
}
|