22 lines
369 B
Go
22 lines
369 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"`
|
|
}
|