StatisticsBean.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 int checked_num;
  30. private int checked_people_num ;
  31. private int 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. // 满分
  37. private int check_no_score ;
  38. // 平均得分
  39. private String score_avg ;
  40. // 平均人均扣分
  41. private float check_score_avg;
  42. private List<String> checked_socre_name = new ArrayList<>() ;
  43. private List<Integer> checked_score = new ArrayList<>() ;
  44. private List<Integer> seq_checked_score = new ArrayList<>() ;
  45. private String start_score;
  46. private String end_score;
  47. }