menu.go 569 B

123456789101112131415161718192021
  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 RsqMenuRoutes struct {
  11. MenuRouteDetails []MenuRouteDetail `json:"data"`
  12. }
  13. type MenuRouteDetail struct {
  14. dao.Menu
  15. HasChildren bool `json:"hasChildren"`
  16. Children []MenuRouteDetail `json:"children"`
  17. }