修改:

1.新增检查登录爬大哥客户端登录接口
This commit is contained in:
2025-06-25 18:17:23 +08:00
parent aada30a000
commit 6819b6c1d4
6 changed files with 55 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ import lombok.Data;
/*
* @author: ziin
* @date: 2025/6/20 19:19
* @date: 2025/6/25 18:15
*/
/**
@@ -162,9 +162,16 @@ public class SystemUsers {
private Long tenantId;
/**
* 能否登录爬虫客户端
* 能否登录主播爬虫客户端
*/
@TableField(value = "crawl")
@ApiModelProperty(value = "能否登录爬虫客户端")
@ApiModelProperty(value = "能否登录主播爬虫客户端")
private Byte crawl;
/**
* 能否登录大哥爬虫客户端
*/
@TableField(value = "big_brother")
@ApiModelProperty(value = "能否登录大哥爬虫客户端")
private Byte bigBrother;
}