mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-02-01 00:28:51 +00:00
trabajando en usuarios
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
package com.imprimelibros.erp.datatables;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DataTablesResponse<T> {
|
||||
public int draw;
|
||||
public long recordsTotal;
|
||||
public long recordsFiltered;
|
||||
public List<T> data;
|
||||
|
||||
public DataTablesResponse(int draw, long total, long filtered, List<T> data) {
|
||||
this.draw = draw;
|
||||
this.recordsTotal = total;
|
||||
this.recordsFiltered = filtered;
|
||||
this.data = data;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user