fix: 78639

体系搜索--弹窗中缺少体系结构查询字段
This commit is contained in:
2023-11-25 21:20:00 +08:00
parent 24746a13c1
commit cd8645bab9
3 changed files with 50 additions and 12 deletions
@@ -30,6 +30,12 @@ public class StandSystemDTO {
@ApiModelProperty(value = "体系结构")
private String standSystem;
@ApiModelProperty(value = "体系结构ID(树状结构选取)")
private String standSystemId;
@ApiModelProperty(value = "体系结构IDList(树状结构选取)")
private List<String> standSystemIdList;
@ApiModelProperty(value = "标准Id")
private String standId;
@@ -156,4 +162,11 @@ public class StandSystemDTO {
this.endReleaseDateString = sdf.format(endReleaseDate);
}
}
public void setStandSystemIdList(String standSystemId) {
this.standSystemId = standSystemId;
if (standSystemId != null) {
this.standSystemIdList = java.util.Arrays.asList(standSystemId.split(","));
}
}
}