Added saved search order

This commit is contained in:
M66B
2022-07-19 15:25:12 +02:00
parent df6b115aa2
commit 17f401340d
12 changed files with 2843 additions and 25 deletions

View File

@@ -39,6 +39,7 @@ public class EntitySearch {
public Long id;
@NonNull
public String name;
public Integer order;
public Integer color;
@NonNull
public String data;
@@ -49,6 +50,7 @@ public class EntitySearch {
EntitySearch other = (EntitySearch) obj;
return (this.id.equals(other.id) &&
this.name.equals(other.name) &&
Objects.equals(this.order, other.order) &&
Objects.equals(this.color, other.color) &&
this.data.equals(other.data));
} else