| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 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<String> checked_socre_name = new ArrayList<>() ;
-
- private List<Integer> checked_score = new ArrayList<>() ;
-
- private List<Integer> seq_checked_score = new ArrayList<>() ;
-
- private String start_score;
- private String end_score;
- }
|