feat(system): 新增用户AI回复开关字段

This commit is contained in:
2025-11-07 13:56:56 +08:00
parent 9519000a75
commit 10c5b04c32
4 changed files with 12 additions and 0 deletions

View File

@@ -33,4 +33,7 @@ public class UserClientSaveReqVO {
@Schema(description = "能否登录 AI 聊天工具", example = "0不允许1允许")
private Byte aiChat;
@Schema(description = "是否允许使用 AI 回复", example = "0不允许1允许")
private Byte aiReplay;
}

View File

@@ -80,4 +80,7 @@ public class UserRespVO{
@Schema(description = "爬取大哥")
private Byte aiChat;
@Schema(description = "是否允许使用 AI 回复", example = "0不允许1允许")
private Byte aiReplay;
}

View File

@@ -88,4 +88,7 @@ public class UserSaveReqVO {
@Schema(description = "能否登录 AI 聊天工具", example = "0不允许1允许")
private Byte aiChat;
@Schema(description = "是否允许使用 AI 回复", example = "0不允许1允许")
private Byte aiReplay;
}

View File

@@ -105,4 +105,7 @@ public class AdminUserDO extends TenantBaseDO {
@Schema(description = "是否允许登录AI客户端", example = "0不允许1允许")
private Byte aiChat;
@Schema(description = "是否允许使用AI回复", example = "0不允许1允许")
private Byte aiReplay;
}