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