Add pagination sort by column

pull/48/head
Rushdi Mohamed 2 years ago
parent 08bc87a5f8
commit 6a99af6b09

@ -174,6 +174,14 @@ public class PaginationRequest {
this.filter = filter; this.filter = filter;
} }
public List<String> getSortColumnList() { return sortColumnList; }
public void setSortColumnList(List<String> sortColumnList) { this.sortColumnList = sortColumnList; }
public List<String> getSortTypeList() { return sortTypeList; }
public void setSortTypeList(List<String> sortTypeList) { this.sortTypeList = sortTypeList; }
@Override @Override
public String toString() { public String toString() {
return "Device type '" + this.deviceType + "' Device Name '" + this.deviceName + "' row count: " + this.rowCount return "Device type '" + this.deviceType + "' Device Name '" + this.deviceName + "' row count: " + this.rowCount

Loading…
Cancel
Save