新增APP登录基础接口、修改微信的相关常量,修改用户拓展接口方法名
This commit is contained in:
parent
6a9b2e27e2
commit
667515ae65
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ public interface ISystemConstant {
|
|||||||
/**
|
/**
|
||||||
* 微信小程序前缀
|
* 微信小程序前缀
|
||||||
*/
|
*/
|
||||||
String WECHAT_MINI_APP_PREFIX = "/wxminiapp";
|
String WECHAT_MINI_APP_PREFIX = "/wechat/miniapp";
|
||||||
/**
|
/**
|
||||||
* true
|
* true
|
||||||
*/
|
*/
|
||||||
|
@ -25,7 +25,7 @@ public interface IUserExpandBaseService<UserExpandDTO extends UserDTO> {
|
|||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
String getListRoute();
|
String getRoute();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 用户详情
|
* 用户详情
|
||||||
|
Loading…
Reference in New Issue
Block a user