fix:数据总览支持基于tag返回标签信息
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
package com.sdm.common.entity.req.data;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
|
||||
@@ -16,36 +15,72 @@ public class TagReq {
|
||||
@Schema(description = "标签1")
|
||||
private String tag1;
|
||||
|
||||
@Schema(description = "标签1名称")
|
||||
private String tag1Name;
|
||||
|
||||
@Schema(description = "标签2")
|
||||
private String tag2;
|
||||
|
||||
@Schema(description = "标签2名称")
|
||||
private String tag2Name;
|
||||
|
||||
@Schema(description = "标签3")
|
||||
private String tag3;
|
||||
|
||||
@Schema(description = "标签3名称")
|
||||
private String tag3Name;
|
||||
|
||||
@Schema(description = "标签4")
|
||||
private String tag4;
|
||||
|
||||
@Schema(description = "标签4名称")
|
||||
private String tag4Name;
|
||||
|
||||
@Schema(description = "标签5")
|
||||
private String tag5;
|
||||
|
||||
@Schema(description = "标签5名称")
|
||||
private String tag5Name;
|
||||
|
||||
@Schema(description = "标签6")
|
||||
private String tag6;
|
||||
|
||||
@Schema(description = "标签6名称")
|
||||
private String tag6Name;
|
||||
|
||||
@Schema(description = "标签7")
|
||||
private String tag7;
|
||||
|
||||
@Schema(description = "标签7名称")
|
||||
private String tag7Name;
|
||||
|
||||
@Schema(description = "标签8")
|
||||
private String tag8;
|
||||
|
||||
@Schema(description = "标签8名称")
|
||||
private String tag8Name;
|
||||
|
||||
@Schema(description = "标签9")
|
||||
private String tag9;
|
||||
|
||||
@Schema(description = "标签9名称")
|
||||
private String tag9Name;
|
||||
|
||||
@Schema(description = "标签10")
|
||||
private String tag10;
|
||||
|
||||
@Schema(description = "标签10名称")
|
||||
private String tag10Name;
|
||||
|
||||
@Schema(description= "任务ID")
|
||||
private String taskId;
|
||||
|
||||
@Schema(description= "任务名称")
|
||||
private String taskName;
|
||||
|
||||
@Schema(description= "算例ID")
|
||||
private String runId;
|
||||
|
||||
@Schema(description= "算例名称")
|
||||
private String runName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user