alarn.go 414 B

123456789101112131415
  1. package model
  2. import "iot_manager_service/app/device/dao"
  3. type RsqAlarmList struct {
  4. Records []dao.Alarm `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 ReqAlarmRemove struct {
  11. IDs int `json:"ids"` //分组编码
  12. }