update common model (comment)

This commit is contained in:
CITE\amentis 2024-10-09 13:06:39 +03:00
parent d1843659a4
commit f54aacb1a4
2 changed files with 10 additions and 10 deletions

View File

@ -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;
}

View File

@ -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;
}
}