Task.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.xintong.visualinspection.bean;
  2. import lombok.Data;
  3. import java.util.Date;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. /**
  7. * 文件名:CheckTask
  8. * 版本信息:日期:2017/4/15 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
  9. */
  10. @Data
  11. public class Task{
  12. //编号
  13. private Long id;
  14. //名称
  15. private String name;
  16. //审核状态
  17. private Integer check_status;
  18. //更新后的值
  19. private Integer update_check_status;
  20. //审核状态
  21. private String check_status_name;
  22. //视屏编号
  23. private String video_id;
  24. //监控位置类型
  25. private Integer checked_location_type;
  26. //监控位置
  27. private String checked_location;
  28. //生成时间
  29. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  30. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  31. private Date create_time;
  32. //考核办法ids
  33. private String rule_id;
  34. //更新时间
  35. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  36. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  37. private Date update_time;
  38. //考核人员ids
  39. private Long checkman;
  40. private String checkman_name;
  41. //被考核人员id
  42. private Long checked_person;
  43. private String checked_person_name;
  44. //被考核部门id
  45. private Long checked_dept;
  46. private String checked_dept_name;
  47. //结束考核时间
  48. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  49. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  50. private Date end_time;
  51. //开始审核时间
  52. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  53. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  54. private Date start_time;
  55. //备注
  56. private String remark;
  57. //用户班次
  58. private String user_class_id;
  59. private Integer status_search_type;
  60. }