package com.xintong.visualinspection.bean; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.springframework.format.annotation.DateTimeFormat; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; /** * 文件名:Job * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有. */ @Data public class StatisticsBean { //编号 private Integer id; // 部门id private Long dept_id; //开始日期 @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private Date start_date ; @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private Date end_date ; private Long user_id ; private String name ; private Integer score; private Integer item_id ; private int checked_num; private int checked_people_num ; private int people_num; private int score_fifteen; private int score_fifty; private int score_over_fifty ; private int all_check_score ; // 满分 private int check_no_score ; // 平均得分 private String score_avg ; // 平均人均扣分 private float check_score_avg; private List checked_socre_name = new ArrayList<>() ; private List checked_score = new ArrayList<>() ; private List seq_checked_score = new ArrayList<>() ; private String start_score; private String end_score; }