StatisticsBean.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.xintong.visualinspection.bean;
  2. import java.util.ArrayList;
  3. import java.util.Date;
  4. import java.util.List;
  5. import org.springframework.format.annotation.DateTimeFormat;
  6. import com.fasterxml.jackson.annotation.JsonFormat;
  7. import lombok.Data;
  8. /**
  9. * 文件名:Job
  10. * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
  11. */
  12. @Data
  13. public class StatisticsBean {
  14. //编号
  15. private Integer id;
  16. // 部门id
  17. private Long dept_id;
  18. //开始日期
  19. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  20. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  21. private Date start_date ;
  22. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  23. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  24. private Date end_date ;
  25. private Long user_id ;
  26. private String name ;
  27. private Integer score;
  28. private Integer item_id ;
  29. private Integer checked_num;
  30. private Integer checked_people_num ;
  31. private Integer people_num;
  32. private int score_fifteen;
  33. private int score_fifty;
  34. private int score_over_fifty ;
  35. private int all_check_score ;
  36. private List<String> checked_socre_name = new ArrayList<>() ;
  37. private List<Integer> checked_score = new ArrayList<>() ;
  38. }