From 069a4e1216ad74066e5ded3ab9632776603add3c Mon Sep 17 00:00:00 2001 From: yuance <182865460@qq.com> Date: Thu, 23 Oct 2025 17:31:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=A1=E8=AE=A1=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gxwebsoft/ai/dto/AuditContentRequest.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/main/java/com/gxwebsoft/ai/dto/AuditContentRequest.java diff --git a/src/main/java/com/gxwebsoft/ai/dto/AuditContentRequest.java b/src/main/java/com/gxwebsoft/ai/dto/AuditContentRequest.java new file mode 100644 index 0000000..2e64482 --- /dev/null +++ b/src/main/java/com/gxwebsoft/ai/dto/AuditContentRequest.java @@ -0,0 +1,35 @@ +package com.gxwebsoft.ai.dto; + +import lombok.Data; + +/** + * 审计内容请求参数 + */ +@Data +public class AuditContentRequest { + + /** + * 企业库 + */ + private String kbIds; + + /** + * 公共库 + */ + private String libraryIds; + + /** + * 案例库 + */ + private String projectLibrary; + + /** + * 历史数据 + */ + private String history; + + /** + * 优化建议 + */ + private String suggestion; +}