系统配置修改

This commit is contained in:
2025-12-09 18:07:44 +08:00
parent e242ff172c
commit b59babed0a
33 changed files with 1177 additions and 128 deletions

View File

@@ -46,4 +46,25 @@ public class TbSysFileDTO extends BaseDTO {
@Schema(description = "文件状态")
private String status;
@Schema(description = "所属模块")
private String module;
@Schema(description = "业务ID")
private String businessId;
@Schema(description = "上传者用户ID")
private String uploader;
@Schema(description = "MinIO对象名称")
private String objectName;
@Schema(description = "MinIO存储桶名称")
private String bucketName;
@Schema(description = "文件MD5值")
private String md5Hash;
@Schema(description = "文件扩展名")
private String extension;
}