新增审计内容请求参数类

This commit is contained in:
2025-10-23 17:31:31 +08:00
parent f0ef08f0e7
commit 069a4e1216

View File

@@ -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;
}