CheckAppealStatistic.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.xintong.visualinspection.bean;
  2. import java.util.Date;
  3. import java.util.List;
  4. import org.springframework.format.annotation.DateTimeFormat;
  5. import com.fasterxml.jackson.annotation.JsonFormat;
  6. import lombok.Data;
  7. @Data
  8. public class CheckAppealStatistic {
  9. // 开始时间
  10. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  11. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  12. private Date start_time;
  13. // 结束时间
  14. @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
  15. @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  16. private Date end_time;
  17. private Integer appeal_result ;
  18. private Integer appeal_success_num ;
  19. private Integer appeal_other_num;
  20. private Integer appeal_fail_num ;
  21. private Integer appeal_num;
  22. private String fee_station_name;
  23. private Integer dept_id ;
  24. private List<Organ> dept_list ;
  25. private Integer parent_dept_id ;
  26. private List<CheckAppealStatistic> subCheckApealStatistic ;
  27. }