Преглед изворни кода

工程类型树形实体类

[user3] пре 4 година
родитељ
комит
88b260ccb5

+ 46 - 0
src/main/java/com/jeeplus/modules/projectEngineering/entity/EngineeringTree.java

@@ -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;
+    }
+}