加入userBaseService
This commit is contained in:
parent
200edf923d
commit
7ee9def43b
|
|
@ -0,0 +1,16 @@
|
|||
package com.chinaweal.youfool.prj.service.impl;
|
||||
|
||||
import com.chinaweal.youfool.framework.springboot.user.service.UserBaseService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 用户
|
||||
*/
|
||||
@Service
|
||||
public class UserBaseServiceImpl implements UserBaseService {
|
||||
|
||||
@Override
|
||||
public boolean isValidToken(String token) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue