This commit is contained in:
2025-03-28 17:51:34 +08:00
parent da612380e0
commit 5c8802d2f0
68 changed files with 3422 additions and 630 deletions

View File

@@ -5,6 +5,7 @@ type SearchDto struct {
SearchTimeEnd string `json:"searchTimeEnd"`
SearchStatus int `json:"searchStatus"`
SearchName string `json:"searchName"`
SearchID int64 `json:"searchID"`
SearchKey string `json:"searchKey"`
SearchParentID int `json:"searchParentId"`
SearchDepartmentID int `json:"searchDepartmentId"`

View File

@@ -12,6 +12,7 @@ type DTreeDto struct {
Title string `json:"title"`
Last bool `json:"last"`
ParentId string `json:"parentId"`
Spread bool `json:"spread"`
Children []*DTreeDto `json:"children"`
}

View File

@@ -19,3 +19,9 @@ 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"`
}