| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.xintong.visualinspection.bean;
- import lombok.Data;
- import java.util.Date;
- import org.springframework.format.annotation.DateTimeFormat;
- import com.fasterxml.jackson.annotation.JsonFormat;
- /**
- * 文件名:CheckTask
- * 版本信息:日期:2017/4/15 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
- */
- @Data
- public class Task{
- //编号
- private Long id;
- //名称
- private String name;
- //审核状态
- private Integer check_status;
- //更新后的值
- private Integer update_check_status;
- //审核状态
- private String check_status_name;
- //视屏编号
- private String video_id;
- //监控位置类型
- private Integer checked_location_type;
- //监控位置
- private String checked_location;
- //生成时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date create_time;
- //考核办法ids
- private String rule_id;
- //更新时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date update_time;
- //考核人员ids
- private Long checkman;
- private String checkman_name;
- //被考核人员id
- private Long checked_person;
- private String checked_person_name;
- //被考核部门id
- private Long checked_dept;
- private String checked_dept_name;
- //结束考核时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date end_time;
- //开始审核时间
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
- private Date start_time;
- //备注
- private String remark;
- //用户班次
- private String user_class_id;
-
- private Integer status_search_type;
- }
|