feat: 添加组网图

This commit is contained in:
caiyuchao
2025-09-17 20:43:55 +08:00
parent 7aae3846b5
commit 86464b0be3
3 changed files with 8 additions and 0 deletions

View File

@@ -135,4 +135,6 @@ public class ProjectRespVO implements VO {
@ExcelProperty("创建时间")
private LocalDateTime createTime;
@Schema(description = "文件url")
private String fileUrl;
}

View File

@@ -73,4 +73,6 @@ public class ProjectSaveReqVO {
@Schema(description = "备注", example = "随便")
private String remark;
@Schema(description = "文件url")
private String fileUrl;
}

View File

@@ -110,4 +110,8 @@ public class ProjectDO extends BaseDO {
*
*/
private Integer dataType;
/**
* 文件url
*/
private String fileUrl;
}