refactor(lsfx): 删除接口5(生成报告)和接口6(检查报告状态)的DTO类

This commit is contained in:
wkc
2026-03-02 22:04:18 +08:00
parent 27b58d20d1
commit c272ee79d8
3 changed files with 0 additions and 81 deletions

View File

@@ -1,16 +0,0 @@
package com.ruoyi.lsfx.domain.request;
import lombok.Data;
/**
* 生成尽调报告请求参数
*/
@Data
public class GenerateReportRequest {
/** 项目ID */
private Integer groupId;
/** 文件ID列表 */
private String fileIds;
}

View File

@@ -1,34 +0,0 @@
package com.ruoyi.lsfx.domain.response;
import lombok.Data;
/**
* 检查报告生成状态响应
*/
@Data
public class CheckReportStatusResponse {
/** 返回码 */
private String code;
/** 消息 */
private String message;
/** 成功标识 */
private Boolean successResponse;
/** 响应数据 */
private ReportStatusData data;
@Data
public static class ReportStatusData {
/** 报告ID */
private Integer reportId;
/** 生成状态0-生成中1-已完成 */
private Integer status;
/** 报告下载地址 */
private String downloadUrl;
}
}

View File

@@ -1,31 +0,0 @@
package com.ruoyi.lsfx.domain.response;
import lombok.Data;
/**
* 生成尽调报告响应
*/
@Data
public class GenerateReportResponse {
/** 返回码 */
private String code;
/** 消息 */
private String message;
/** 成功标识 */
private Boolean successResponse;
/** 响应数据 */
private ReportData data;
@Data
public static class ReportData {
/** 报告ID */
private Integer reportId;
/** 生成状态 */
private String status;
}
}