package view type LayuiTree struct { ID string `json:"id"` Title string `json:"title"` Spread bool `json:"spread"` Children []*LayuiTree `json:"children"` } type XmSelectTree struct { Name string `json:"name"` Value string `json:"value"` Children []*XmSelectTree `json:"children"` }