25 lines
375 B
Java
25 lines
375 B
Java
|
package cn.com.tenlion.service.weixinlogin;
|
||
|
|
||
|
import com.alibaba.fastjson.JSONObject;
|
||
|
|
||
|
/**
|
||
|
* TODO
|
||
|
* @version 1.0
|
||
|
* @author LY
|
||
|
* @date 2021/1/26 11:19
|
||
|
*/
|
||
|
public interface IWeiXinLoginService {
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 微信小程序登录
|
||
|
* @param code
|
||
|
* @return
|
||
|
* @throws Exception
|
||
|
*/
|
||
|
String weiXinLoginBySmallRoutine(String code) throws Exception;
|
||
|
|
||
|
}
|