CheckOther.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. import lombok.EqualsAndHashCode;
  7. @Data
  8. @EqualsAndHashCode(callSuper = false)
  9. public class CheckOther {
  10. //编号
  11. private Long id;
  12. // 部门id
  13. private Long dept_id;
  14. // 稽查人员id
  15. private Long user_id;
  16. // 稽查人id
  17. private Long check_person_id;
  18. // 扣分值
  19. private Long check_score;
  20. // 考核项id
  21. private Long check_item_id;
  22. // 扣分描述
  23. private String remark;
  24. // 稽查类型 页面1,2,3,4
  25. private Integer check_type;
  26. // 附件ids
  27. private String file_ids;
  28. //稽查时间
  29. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
  30. @JsonFormat(pattern="yyyy-MM-dd HH:mm",timezone = "GMT+8")
  31. private Date check_time;
  32. // 稽查次数
  33. private Integer check_num;
  34. //稽查月份名称 年/月
  35. private String check_time_name;
  36. // 删除标记
  37. private Integer delete_flag;
  38. // 更新时间
  39. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  40. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  41. private Date update_time;
  42. // 部门名称
  43. private String organname;
  44. // 人员名称
  45. private String username;
  46. // 扣分类型名
  47. private String check_item_name;
  48. // 清障检查类型
  49. private Integer wrecker_check_type;
  50. // 清障检查类型
  51. private String wrecker_check_type_name;
  52. }