2025-03-31 17:36:49 +08:00

20 lines
431 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"`
}
type XmSelect struct {
Name string `json:"name"`
Value string `json:"value"`
}