2025-03-28 17:51:34 +08:00

15 lines
348 B
Go

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"`
}