menu.go 647 B

1234567891011121314151617181920212223242526
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. type RsqMenuList struct {
  4. Records []dao.Menu `js+on:"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 RsqMenuLazyList struct {
  16. List []MenuLazyListDetail `json:"data"`
  17. }
  18. type MenuLazyListDetail struct {
  19. dao.Menu
  20. HasChildren bool `json:"hasChildren"`
  21. }