Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. @QueryParam("orderBy") String orderBy,
  2. @ApiParam(allowableValues = "ASC, DESC") @QueryParam("orderDirection") String orderDirection,
  3. @QueryParam("accountNumber") String accountNumber,
  4. @QueryParam("noteType") String noteType,
  5. @ApiParam("YYYY-MM-DD") @QueryParam("fromDate") String fromDate,
  6. @ApiParam("YYYY-MM-DD") @QueryParam("toDate") String toDate,
  7. @ApiParam(allowableValues = "ACTIVE, PENDING") @QueryParam("recordStatus") String recordStatus,
  8. @DefaultValue("N") @ApiParam(allowableValues = "Y, N") @QueryParam("includeSecondaryAccounts") String includeSecondaryAccounts,
  9. @QueryParam("createdBy") String createdBy,
  10. @QueryParam("top") int top,
  11. @QueryParam("skip") int skip
  12.  
  13.  
  14. Query параметри:
  15.  
  16. orderBy -> eg. - pastDueBalanceAmount
  17. orderDirection -> eg. - ASC, DESC
  18. accountNumber
  19. noteType
  20. fromDate -> Формат "YYYY-MM-DD"
  21. toDate -> формат "YYYY-MM-DD"
  22. recordStatus
  23. createdBy
  24.  
  25. top
  26. skip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement