From 676d8bd099fddeedbdbad2840be7e683d647bb51 Mon Sep 17 00:00:00 2001
From: liuxiaolong <liuxiaolong@qq.com>
Date: 星期二, 14 五月 2019 14:00:36 +0800
Subject: [PATCH] area interface

---
 entites.go |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/entites.go b/entites.go
index 05ac02c..4bddb2d 100644
--- a/entites.go
+++ b/entites.go
@@ -32,6 +32,19 @@
 	Reserved   string
 }
 
+type TreeMenu struct {
+	Id        string     `json:"id" `
+	Type      string     `json:"type"`
+	Name      string     `json:"name"`
+	Treenodes []TreeMenu `json:"children"`
+}
+
+type TreeNode struct {
+	Id       int
+	Name     string
+	Parentid int
+}
+
 //鎽勫儚鏈虹粨鏋�
 type Camera struct {
 	Id        string

--
Gitblit v1.8.0