Parcourir la source

清障人员实体类

minitiger il y a 8 ans
Parent
commit
6639f90736

+ 32 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/bean/WreckerGroup.java

@@ -0,0 +1,32 @@
+package com.xintong.visualinspection.bean;
+
+import java.util.List;
+
+import lombok.Data;
+
+/**
+ * 文件名:Organ
+ * 版本信息:日期:2017/4/18 Copyright 江苏省交通规划设计院 Corporation 2017 版权所有.
+ */
+@Data
+public class WreckerGroup {
+    //编号
+    private Integer id;
+    //组织机构名称
+    private String name;
+    //总车道数
+    private Integer lanes_number;
+    //出口车道数'
+    private Integer exit_numer;
+    //入口车道数'
+    private Integer entrance_numer;
+    //出口etc车道数
+    private Integer exit_etc;
+    //入口etc车道数
+    private Integer entrance_etc;
+    //机构编码
+    private String deptid;
+    //是否显示,0:不显示,1:显示
+    private String isshow;
+    private String parentid;
+}