/* * @description:废弃 * @Author: CP * @Date: 2020-09-16 14:15:41 * @FilePath: \construction_management\lib\tree.go */ package lib type Tree struct { Id int `json:"id"` ParentId int `json:"pid"` Name string `json:"name"` Child []*Tree `json:"child"` }