v1
This commit is contained in:
27
internal/erpserver/model/dto/xm_select.go
Normal file
27
internal/erpserver/model/dto/xm_select.go
Normal 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"`
|
||||
}
|
||||
Reference in New Issue
Block a user