|
@@ -31,8 +31,11 @@ public class SopInfoListParam extends TBSopInfo implements Serializable {
|
|
|
@ApiModelProperty(value = "版本号")
|
|
|
private Integer version = 1;
|
|
|
|
|
|
- @ApiModelProperty(value = "元数据数组")
|
|
|
- private List<FormWidgetMetadataParam> formWidgetMetadataList;
|
|
|
+ @ApiModelProperty(value = "元数据显示字段数组")
|
|
|
+ private List<FormWidgetMetadataParam> formWidgetMetadataViewList;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "元数据筛选字段数组")
|
|
|
+ private List<FormWidgetMetadataParam> formWidgetMetadataConditionList;
|
|
|
|
|
|
@ApiModelProperty(value = "页码")
|
|
|
@NotNull(message = "页码不能为空")
|
|
@@ -76,12 +79,20 @@ public class SopInfoListParam extends TBSopInfo implements Serializable {
|
|
|
this.version = version;
|
|
|
}
|
|
|
|
|
|
- public List<FormWidgetMetadataParam> getFormWidgetMetadataList() {
|
|
|
- return formWidgetMetadataList;
|
|
|
+ public List<FormWidgetMetadataParam> getFormWidgetMetadataViewList() {
|
|
|
+ return formWidgetMetadataViewList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFormWidgetMetadataViewList(List<FormWidgetMetadataParam> formWidgetMetadataViewList) {
|
|
|
+ this.formWidgetMetadataViewList = formWidgetMetadataViewList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<FormWidgetMetadataParam> getFormWidgetMetadataConditionList() {
|
|
|
+ return formWidgetMetadataConditionList;
|
|
|
}
|
|
|
|
|
|
- public void setFormWidgetMetadataList(List<FormWidgetMetadataParam> formWidgetMetadataList) {
|
|
|
- this.formWidgetMetadataList = formWidgetMetadataList;
|
|
|
+ public void setFormWidgetMetadataConditionList(List<FormWidgetMetadataParam> formWidgetMetadataConditionList) {
|
|
|
+ this.formWidgetMetadataConditionList = formWidgetMetadataConditionList;
|
|
|
}
|
|
|
|
|
|
public Integer getPageNumber() {
|