menu.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. type RsqMenuList struct {
  4. Records []dao.Menu `json:"records"` //记录列表
  5. Current int `json:"current"` //当前分页
  6. Size int `json:"size"` //每页数量
  7. Pages int `json:"pages"` //总页数
  8. Total int `json:"total"` //总数
  9. }
  10. type MenuRouteDetail struct {
  11. dao.Menu
  12. HasChildren bool `json:"hasChildren"`
  13. Children []MenuRouteDetail `json:"children"`
  14. }
  15. type MenuTreeDetail struct {
  16. ID string `json:"id"`
  17. ParentId string `json:"parentId"`
  18. HasChildren bool `json:"hasChildren"`
  19. Title string `json:"title"`
  20. Key string `json:"key"`
  21. Value string `json:"value"`
  22. Children []MenuTreeDetail `json:"children"`
  23. }
  24. type RsqMenuLazyList struct {
  25. List []MenuLazyListDetail `json:"data"`
  26. }
  27. type MenuLazyListDetail struct {
  28. dao.Menu
  29. HasChildren bool `json:"hasChildren"`
  30. }
  31. type ResMenuIds struct {
  32. Menu []int64 `json:"menu"`
  33. DataScope []int `json:"dataScope"` //类型还未确定
  34. ApiScope []int `json:"apiScope"` //类型还未确定
  35. }
  36. type ResGrantTree struct {
  37. Menu []MenuRouteDetail `json:"menu"`
  38. DataScope []int `json:"dataScope"` //类型还未确定
  39. ApiScope []int `json:"apiScope"` //类型还未确定
  40. }