加入userBaseService

This commit is contained in:
黄晓 2021-10-24 11:33:34 +08:00
parent 200edf923d
commit 7ee9def43b
1 changed files with 16 additions and 0 deletions

View File

@ -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;
}
}