bff config to nacos
CI / changes (push) Successful in 2s
CI / docker-bff (push) Successful in 3m7s
CI / docker-product (push) Has been skipped
CI / docker-admin (push) Successful in 3m26s

This commit is contained in:
2026-08-13 16:27:18 +08:00
parent 94e1c6f97d
commit 6c20427b0a
19 changed files with 458 additions and 169 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
package dao
type RoutesMenu struct {
Id int `json:"id"`
Id int64 `json:"id"`
Name string `json:"name"`
ParentId int `json:"parent_id"`
ParentId int64 `json:"parent_id"`
Level uint8 `json:"level"`
Type uint8 `json:"type"`
Path string `json:"path"`
@@ -13,12 +13,12 @@ type RoutesMenu struct {
Icon string `json:"icon"`
Sort uint8 `json:"sort"`
IsShow uint8 `json:"is_show"`
Remarks string `json:"remarks"`
Description string `json:"description"`
Children []RoutesMenu `json:"children"`
}
type RoutesAuth struct {
Id int `json:"id"`
Id int64 `json:"id"`
Type uint8 `json:"type"`
Identification string `json:"identification"`
}