alarm.go 991 B

12345678910111213141516171819202122
  1. package model
  2. type RequestAlarmFilter struct {
  3. StartTime string `form:"queryStartDate"`
  4. EndTime string `form:"queryEndDate"`
  5. QueryType string `form:"queryType"` //类型 month月 day日
  6. QueryDeviceType string `form:"queryDeviceType"` //设备类型
  7. }
  8. type ResponseAlarm struct {
  9. ID int `json:"id"`
  10. CountTime string `json:"countTime"` //统一时间
  11. MonthTime string `json:"monthTime,omitempty"` //月份 与 日期 2选 一
  12. DayTime string `json:"dayTime,omitempty"` //日期 与 月份 2选 一
  13. DeviceType string `json:"deviceType"` //设备类型
  14. CountUnsolve int `json:"countUnsolve"` //未处理报警数量
  15. CountSolve int `json:"countSolve"` //已完结工单
  16. CountOpts int `json:"countOpts"` //生成工单数量
  17. CountT int `json:"countT"` //总报警
  18. CreateTime string `json:"createTime"`
  19. TenantID string `json:"tenantId"`
  20. }