This commit is contained in:
dute7liang
2024-01-04 22:34:07 +08:00
parent 69aa1c97d2
commit 04f4861912
13 changed files with 225 additions and 15 deletions

View File

@@ -11,4 +11,13 @@ import com.ruoyi.cai.domain.Black;
*/
public interface BlackService extends IService<Black> {
boolean addBlack(Black black);
boolean updateBlackStatus(Long id, Integer enableStatus);
boolean deleteBlack(Long id);
boolean checkBlackIp(String ip);
boolean checkBlackMic(String ip);
}