| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.xintong.visualinspection.bean;
- import java.util.Date;
- import java.util.List;
- import org.springframework.format.annotation.DateTimeFormat;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- @Data
- public class CheckAppealStatistic {
-
- // 开始时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date start_time;
-
- // 结束时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date end_time;
-
- private Integer appeal_result ;
-
- private Integer appeal_success_num ;
-
- private Integer appeal_other_num;
-
- private Integer appeal_fail_num ;
-
- private Integer appeal_num;
-
- private String fee_station_name;
-
- private Integer dept_id ;
-
- private List<Organ> dept_list ;
-
- private Integer parent_dept_id ;
-
- private List<CheckAppealStatistic> subCheckApealStatistic ;
-
- }
|