|
@@ -0,0 +1,46 @@
|
|
|
+package com.jeeplus.modules.projectEngineering.entity;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 工程类型树形实体类
|
|
|
+ */
|
|
|
+public class EngineeringTree {
|
|
|
+
|
|
|
+ private String title; //工程类型名称
|
|
|
+ private String id; //工程类型Id
|
|
|
+ private String type; //是否有子集
|
|
|
+ private List<EngineeringTree> child;
|
|
|
+
|
|
|
+ public String getTitle() {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title) {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(String id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getType() {
|
|
|
+ return type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setType(String type) {
|
|
|
+ this.type = type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<EngineeringTree> getChild() {
|
|
|
+ return child;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setChild(List<EngineeringTree> child) {
|
|
|
+ this.child = child;
|
|
|
+ }
|
|
|
+}
|