| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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 Integer checked_num;
-
- private Integer checked_people_num ;
-
- private Integer people_num;
-
- private int score_fifteen;
-
- private int score_fifty;
-
- private int score_over_fifty ;
-
- private int all_check_score ;
-
- private List<String> checked_socre_name = new ArrayList<>() ;
-
- private List<Integer> checked_score = new ArrayList<>() ;
- }
|