infoBoard.go 702 B

12345678910111213141516171819202122232425
  1. package model
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "time"
  5. )
  6. type RsqInfoBoardList struct {
  7. Records []InfoBoardDetail `json:"records"` //记录列表
  8. Current int `json:"current"` //当前分页
  9. Size int `json:"size"` //每页数量
  10. Pages int `json:"pages"` //总页数
  11. Total int `json:"total"` //总数
  12. }
  13. type ReqInfoBoardRemove struct {
  14. IDs int `json:"ids"` //分组编码
  15. }
  16. type InfoBoardDetail struct {
  17. dao.InfoBoard
  18. EndLineTime time.Time `json:"endLineTime"` //最后上线时间
  19. NetworkState string `json:"networkState"` //网络状态
  20. RunState string `json:"runState"` //运行状态
  21. }