Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. @AllArgsConstructor
  2. @NoArgsConstructor
  3. @Data
  4. public class Statistic {
  5.  
  6. private BigDecimal sum;
  7. private BigDecimal avg;
  8. private BigDecimal max;
  9. private BigDecimal min;
  10. private long count;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement