网页版资源同步

This commit is contained in:
2025-09-26 14:38:45 +08:00
parent 273fc16f87
commit c51652000c
5 changed files with 27 additions and 2 deletions

View File

@ -0,0 +1,22 @@
package com.yj.earth.design;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class WebSource {
@Schema(description = "主键")
private String id;
@Schema(description = "资源名称")
private String name;
@Schema(description = "资源路径")
private String path;
@Schema(description = "资源类型")
private String type;
@Schema(description = "创建时间")
private LocalDateTime createdAt;
@Schema(description = "更新时间")
private LocalDateTime updatedAt;
}