25 lines
500 B
Java
25 lines
500 B
Java
package ink.wgink.interfaces.app;
|
|
|
|
/**
|
|
* When you feel like quitting. Think about why you started
|
|
* 当你想要放弃的时候,想想当初你为何开始
|
|
*
|
|
* @ClassName: IAppSignBaseService
|
|
* @Description: app登录
|
|
* @Author: wanggeng
|
|
* @Date: 2021/4/7 7:09 下午
|
|
* @Version: 1.0
|
|
*/
|
|
public interface IAppSignBaseService {
|
|
|
|
/**
|
|
* userId登录
|
|
*
|
|
* @param userId
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
String userIdSign(String userId) throws Exception;
|
|
|
|
}
|