| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.xintong.visualinspection.bean;
- import java.util.Date;
- import org.springframework.format.annotation.DateTimeFormat;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- /**
- *
- * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
- */
- @Data
- public class CheckmanStatisticsBean {
- //编号
- private Integer id;
- //
- private Integer checkman_id;
-
- private Integer all_checkman;
-
- private Integer all_task_num;
-
- private Integer all_check_minute;
-
- private Integer all_checked_score ;
-
- private Integer all_checked_num;
-
- // 扣分次数
- private Integer checked_num ;
-
- //开始日期
- @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 ;
- }
|