15 lines
348 B
Go
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"`
|
|
}
|