- package model
- import "iot_manager_service/app/device/dao"
- type RsqAlarmList struct {
- Records []dao.Alarm `json:"records"` //记录列表
- Current int `json:"current"` //当前分页
- Size int `json:"size"` //每页数量
- Pages int `json:"pages"` //总页数
- Total int `json:"total"` //总数
- }
- type ReqAlarmRemove struct {
- IDs int `json:"ids"` //分组编码
- }
|