123456789101112131415161718192021 |
- package model
- import "iot_manager_service/app/system/dao"
- type RsqMenuList struct {
- Records []dao.Menu `js+on:"records"` //记录列表
- Current int `json:"current"` //当前分页
- Size int `json:"size"` //每页数量
- Pages int `json:"pages"` //总页数
- Total int `json:"total"` //总数
- }
- type RsqMenuRoutes struct {
- MenuRouteDetails []MenuRouteDetail `json:"data"`
- }
- type MenuRouteDetail struct {
- dao.Menu
- HasChildren bool `json:"hasChildren"`
- Children []MenuRouteDetail `json:"children"`
- }
|