|
|
@@ -1,30 +1,38 @@
|
|
|
-package com.goafanti.business.bo;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-import com.goafanti.common.model.JtBusinessCategory;
|
|
|
-
|
|
|
-public class JtBusinessCategoryBo {
|
|
|
-String topLevel;
|
|
|
-String topLevelId;
|
|
|
-List<JtBusinessCategory>children;
|
|
|
-public String getTopLevel() {
|
|
|
- return topLevel;
|
|
|
-}
|
|
|
-public void setTopLevel(String topLevel) {
|
|
|
- this.topLevel = topLevel;
|
|
|
-}
|
|
|
-public List<JtBusinessCategory> getChildren() {
|
|
|
- return children;
|
|
|
-}
|
|
|
-public void setChildren(List<JtBusinessCategory> children) {
|
|
|
- this.children = children;
|
|
|
-}
|
|
|
-public String getTopLevelId() {
|
|
|
- return topLevelId;
|
|
|
-}
|
|
|
-public void setTopLevelId(String topLevelId) {
|
|
|
- this.topLevelId = topLevelId;
|
|
|
-}
|
|
|
-
|
|
|
-}
|
|
|
+package com.goafanti.business.bo;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import com.goafanti.common.model.JtBusinessCategory;
|
|
|
+
|
|
|
+public class JtBusinessCategoryBo {
|
|
|
+String topLevel;
|
|
|
+String topLevelId;
|
|
|
+List<JtBusinessCategory>children;
|
|
|
+String topImg;
|
|
|
+
|
|
|
+public String getTopImg() {
|
|
|
+ return topImg;
|
|
|
+}
|
|
|
+public void setTopImg(String topImg) {
|
|
|
+ this.topImg = topImg;
|
|
|
+}
|
|
|
+public String getTopLevel() {
|
|
|
+ return topLevel;
|
|
|
+}
|
|
|
+public void setTopLevel(String topLevel) {
|
|
|
+ this.topLevel = topLevel;
|
|
|
+}
|
|
|
+public List<JtBusinessCategory> getChildren() {
|
|
|
+ return children;
|
|
|
+}
|
|
|
+public void setChildren(List<JtBusinessCategory> children) {
|
|
|
+ this.children = children;
|
|
|
+}
|
|
|
+public String getTopLevelId() {
|
|
|
+ return topLevelId;
|
|
|
+}
|
|
|
+public void setTopLevelId(String topLevelId) {
|
|
|
+ this.topLevelId = topLevelId;
|
|
|
+}
|
|
|
+
|
|
|
+}
|