CheckmanStatisticsBean.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.xintong.visualinspection.bean;
  2. import java.util.Date;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import com.fasterxml.jackson.annotation.JsonFormat;
  5. import lombok.Data;
  6. /**
  7. *
  8. * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
  9. */
  10. @Data
  11. public class CheckmanStatisticsBean {
  12. //编号
  13. private Integer id;
  14. //
  15. private Integer checkman_id;
  16. private Integer all_checkman;
  17. private Integer all_task_num;
  18. private Integer all_check_minute;
  19. private Integer all_checked_score ;
  20. private Integer all_checked_num;
  21. // 扣分次数
  22. private Integer checked_num ;
  23. // 扣分任务数
  24. private Integer checked_task_num ;
  25. // 考核扣分人员数量
  26. private Integer checked_people_num ;
  27. // 无效任务数
  28. private Integer unable_task_num ;
  29. //开始日期
  30. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  31. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  32. private Date start_date ;
  33. //结束日期
  34. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  35. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  36. private Date end_date ;
  37. }