update common model (comment)
This commit is contained in:
parent
d1843659a4
commit
f54aacb1a4
|
@ -6,8 +6,6 @@ public class PropertyDefinitionFieldSetItemModel {
|
|||
|
||||
private Map<String, FieldModel> fields;
|
||||
|
||||
private String comment;
|
||||
|
||||
private Integer ordinal;
|
||||
|
||||
public Map<String, FieldModel> getFields() {
|
||||
|
@ -18,14 +16,6 @@ public class PropertyDefinitionFieldSetItemModel {
|
|||
this.fields = fields;
|
||||
}
|
||||
|
||||
public String getComment() {
|
||||
return comment;
|
||||
}
|
||||
|
||||
public void setComment(String comment) {
|
||||
this.comment = comment;
|
||||
}
|
||||
|
||||
public Integer getOrdinal() {
|
||||
return ordinal;
|
||||
}
|
||||
|
|
|
@ -6,6 +6,8 @@ public class PropertyDefinitionFieldSetModel {
|
|||
|
||||
private List<PropertyDefinitionFieldSetItemModel> items;
|
||||
|
||||
private String comment;
|
||||
|
||||
public List<PropertyDefinitionFieldSetItemModel> getItems() {
|
||||
return items;
|
||||
}
|
||||
|
@ -13,4 +15,12 @@ public class PropertyDefinitionFieldSetModel {
|
|||
public void setItems(List<PropertyDefinitionFieldSetItemModel> items) {
|
||||
this.items = items;
|
||||
}
|
||||
|
||||
public String getComment() {
|
||||
return comment;
|
||||
}
|
||||
|
||||
public void setComment(String comment) {
|
||||
this.comment = comment;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue