dev add token spent logic
Test Workflow / test (push) Successful in 5s

This commit is contained in:
vladp
2026-04-13 15:04:22 +07:00
parent e32e2d990b
commit dbefc21e6d
@@ -15,14 +15,14 @@ public class LawCaseRequest {
//required
private String description;
private BigDecimal amount;
private String priority = LawCasePriority.MIDDLE.toString();
private String priority = LawCasePriority.HIGH.toString();
private String type;
private String lawyer;
private String token;
private Integer pageSize = 10;
private Integer pageSize = 5;
private Integer pageNumber = 0;
private String sortBy = "createdAt";
private String sortDir = "asc";
private String sortBy = "updatedAt";
private String sortDir = "desc";
private String action;
private LawCaseType filterType;
private String filterLawyer;