28 lines
536 B
Go
28 lines
536 B
Go
package dto
|
|
|
|
type XmSelectDto struct {
|
|
Name string `json:"name"`
|
|
Value int `json:"value"`
|
|
}
|
|
|
|
type XmSelectInt64Dto struct {
|
|
Name string `json:"name"`
|
|
Value int64 `json:"value"`
|
|
}
|
|
|
|
type XmSelectInt32Dto struct {
|
|
Name string `json:"name"`
|
|
Value int32 `json:"value"`
|
|
}
|
|
|
|
type XmSelectStrDto struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
type XmSelectTreeDto struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
Children []*XmSelectTreeDto `json:"children"`
|
|
}
|