This commit is contained in:
2025-04-14 15:42:22 +08:00
parent 371b89ee8d
commit 461531c308
133 changed files with 58 additions and 14400 deletions

View File

@@ -0,0 +1,27 @@
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"`
}