update modules/kbase: mod 6 files

This commit is contained in:
jack ning
2025-04-19 10:36:29 +08:00
parent 501f5974f6
commit 4e36bfbdfc
6 changed files with 39 additions and 15 deletions

View File

@@ -169,9 +169,6 @@ public class KbaseEntity extends BaseEntity {
// 某人工客服快捷回复知识库
private String agentUid;
// 机器人模拟测试知识库
private String robotUid;
@Builder.Default
@ManyToMany(fetch = FetchType.LAZY)
private List<MemberEntity> members = new ArrayList<>();

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-03-22 22:59:48
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-04-19 10:08:37
* @LastEditTime: 2025-04-19 10:15:29
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -151,9 +151,6 @@ public class KbaseRequest extends BaseRequest {
private String agentUid;
// 机器人模拟测试知识库
private String robotUid;
// 从 notebase 查询, 同时查询 HELPCENTER 和 NOTEBASE 两种类型
@Builder.Default
private Boolean queryNotebase = false;

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-03-22 23:00:00
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-04-19 10:08:54
* @LastEditTime: 2025-04-19 10:15:32
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -112,9 +112,6 @@ public class KbaseResponse extends BaseResponse {
private String agentUid;
private String userUid;
// 机器人模拟测试知识库
private String robotUid;
private List<UserProtobuf> members;
}