fix: 78639
体系搜索--弹窗中缺少体系结构查询字段
This commit is contained in:
@@ -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(","));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user