menu.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 MenuSubmit struct {
  25. ID int `json:"id"`
  26. ParentId int `json:"parentId"` //父级菜单
  27. Code string `json:"code"` //菜单编号
  28. Name string ` json:"name"` //菜单名称
  29. Alias string `json:"alias"` //菜单别名
  30. Path string `json:"path"` //请求地址
  31. Source string `json:"source"` //菜单资源
  32. Sort int `json:"sort"` //排序
  33. Category int `json:"category"` //菜单类型
  34. Action int `json:"action"` //操作按钮类型
  35. IsOpen int `json:"isOpen"` //是否打开新页面
  36. Remark string `json:"remark"` //备注
  37. }
  38. type RsqMenuLazyList struct {
  39. List []MenuLazyListDetail `json:"data"`
  40. }
  41. type MenuLazyListDetail struct {
  42. dao.Menu
  43. HasChildren bool `json:"hasChildren"`
  44. }
  45. type ResMenuIds struct {
  46. Menu []int `json:"menu"`
  47. DataScope []int `json:"dataScope"` //类型还未确定
  48. ApiScope []int `json:"apiScope"` //类型还未确定
  49. }
  50. type ResGrantTree struct {
  51. Menu []MenuRouteDetail `json:"menu"`
  52. DataScope []int `json:"dataScope"` //类型还未确定
  53. ApiScope []int `json:"apiScope"` //类型还未确定
  54. }