16 lines
395 B
Java
16 lines
395 B
Java
package com.yzdx.AiInterviewer.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.yzdx.AiInterviewer.entity.BlackToken;
|
|
|
|
public interface BlackTokenService extends IService<BlackToken> {
|
|
|
|
/**
|
|
* 判断token是否在黑名单里面
|
|
* @param token 输入的token
|
|
* @return true:为黑名单token
|
|
* */
|
|
boolean isBlackToken(String token);
|
|
|
|
}
|