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,18 @@
package dto
type TreeDto struct {
ID int `json:"id"`
Title string `json:"title"`
Children []*TreeDto `json:"children"`
}
type DTreeDto struct {
ID string `json:"id"`
Title string `json:"title"`
Last bool `json:"last"`
ParentId string `json:"parentId"`
Spread bool `json:"spread"`
Children []*DTreeDto `json:"children"`
}