Browse Source

优化

pull/268/head
chenzhihang 10 months ago
parent
commit
696f939295
2 changed files with 9 additions and 2 deletions
  1. +4
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/ModelMetaVo.java
  2. +5
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/NewDatasetVo.java

+ 4
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/ModelMetaVo.java View File

@@ -82,9 +82,12 @@ public class ModelMetaVo implements Serializable {
@ApiModelProperty(value = "示例用法")
private String usage;

@ApiModelProperty(name = "time_ago", value = "更新时间")
@ApiModelProperty(name = "time_ago", value = "创建时间")
private String timeAgo;

@ApiModelProperty(name = "full_last_update_time",value = "更新时间")
private Date fullLastUpdateTime;

@ApiModelProperty(name = "owner", value = "项目所有者")
private String owner;



+ 5
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/vo/NewDatasetVo.java View File

@@ -44,8 +44,12 @@ public class NewDatasetVo implements Serializable {
@ApiModelProperty(name = "dataset_version_vos",value = "文件列表")
private List<VersionVo> datasetVersionVos;

@ApiModelProperty(name = "time_ago",value = "更新时间")
@ApiModelProperty(name = "time_ago",value = "创建时间")
private String timeAgo;

@ApiModelProperty(name = "full_last_update_time",value = "更新时间")
private Date fullLastUpdateTime;

@ApiModelProperty(name = "id",value = "数据集仓库id")
private Integer id;
@ApiModelProperty(name = "visits",value = "访问次数")


Loading…
Cancel
Save