feat: 添加文件上传查询DTO和统计VO
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
package com.ruoyi.ccdi.project.domain.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件上传记录查询 DTO
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
* @date 2026-03-05
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class CcdiFileUploadQueryDTO implements Serializable {
|
||||||
|
|
||||||
|
@Serial
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 项目ID */
|
||||||
|
private Long projectId;
|
||||||
|
|
||||||
|
/** 文件状态 */
|
||||||
|
private String fileStatus;
|
||||||
|
|
||||||
|
/** 文件名称(模糊查询) */
|
||||||
|
private String fileName;
|
||||||
|
|
||||||
|
/** 上传人 */
|
||||||
|
private String uploadUser;
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
package com.ruoyi.ccdi.project.domain.vo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件上传统计 VO
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
* @date 2026-03-05
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class CcdiFileUploadStatisticsVO implements Serializable {
|
||||||
|
|
||||||
|
@Serial
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** 上传中数量 */
|
||||||
|
private Long uploading;
|
||||||
|
|
||||||
|
/** 解析中数量 */
|
||||||
|
private Long parsing;
|
||||||
|
|
||||||
|
/** 解析成功数量 */
|
||||||
|
private Long parsedSuccess;
|
||||||
|
|
||||||
|
/** 解析失败数量 */
|
||||||
|
private Long parsedFailed;
|
||||||
|
|
||||||
|
/** 总数量 */
|
||||||
|
private Long total;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user