新增APP登录基础接口、修改微信的相关常量,修改用户拓展接口方法名

This commit is contained in:
wanggeng888 2021-04-08 22:51:58 +08:00
parent 6a9b2e27e2
commit 667515ae65
3 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,7 @@
package ink.wgink.interfaces.app; package ink.wgink.interfaces.app;
import java.io.UnsupportedEncodingException;
/** /**
* When you feel like quitting. Think about why you started * When you feel like quitting. Think about why you started
* 当你想要放弃的时候想想当初你为何开始 * 当你想要放弃的时候想想当初你为何开始
@ -11,4 +13,14 @@ package ink.wgink.interfaces.app;
* @Version: 1.0 * @Version: 1.0
*/ */
public interface IAppSignBaseService { public interface IAppSignBaseService {
/**
* userId登录
*
* @param userId
* @return
* @throws Exception
*/
String userIdSign(String userId) throws Exception;
} }

View File

@ -107,7 +107,7 @@ public interface ISystemConstant {
/** /**
* 微信小程序前缀 * 微信小程序前缀
*/ */
String WECHAT_MINI_APP_PREFIX = "/wxminiapp"; String WECHAT_MINI_APP_PREFIX = "/wechat/miniapp";
/** /**
* true * true
*/ */

View File

@ -25,7 +25,7 @@ public interface IUserExpandBaseService<UserExpandDTO extends UserDTO> {
* *
* @return * @return
*/ */
String getListRoute(); String getRoute();
/** /**
* 用户详情 * 用户详情