|
|
@@ -0,0 +1,37 @@
|
|
|
+package com.xintong.visualinspection.bean;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 文件名:OtherInspetion
|
|
|
+ * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class OtherInspetion {
|
|
|
+ //编号
|
|
|
+ private Integer id;
|
|
|
+ //名称
|
|
|
+ private String name;
|
|
|
+ //被考核人员id
|
|
|
+ private Integer check_personnel;
|
|
|
+ //考核人员ids
|
|
|
+ private String assessment_personnel_ids;
|
|
|
+ //监控位置
|
|
|
+ private String monitoring_position;
|
|
|
+ //生成时间
|
|
|
+ private Date insert_time;
|
|
|
+ //开始时间
|
|
|
+ private Date start_time;
|
|
|
+ //跟新时间
|
|
|
+ private Date update_time;
|
|
|
+ //结束时间
|
|
|
+ private Date end_time;
|
|
|
+ //被考核职位
|
|
|
+ private Integer assessment_occupation_id;
|
|
|
+ //被考核部门id
|
|
|
+ private Integer assessment_department_id;
|
|
|
+ //稽查状态
|
|
|
+ private Integer status;
|
|
|
+}
|