workbenchService.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/device/model"
  5. "iot_manager_service/util"
  6. )
  7. // 中间件管理服务
  8. var WorkbenchService = new(workbenchService)
  9. type workbenchService struct{}
  10. func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *util.Errors) {
  11. counts, err := dao.GetDeviceCount(tenantId)
  12. if err != nil {
  13. return nil, util.FailResponse(err.Error(), nil)
  14. }
  15. return counts, nil
  16. }
  17. func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *util.Errors) {
  18. count, err := dao.GetAlarmCount(tenantId)
  19. if err != nil {
  20. return nil, util.FailResponse(err.Error(), nil)
  21. }
  22. return count, nil
  23. }
  24. func (s *workbenchService) CountJobTodo(tenantId int) (*dao.CountAlarm, *util.Errors) {
  25. count, err := dao.GetAlarmCount(tenantId)
  26. if err != nil {
  27. return nil, util.FailResponse(err.Error(), nil)
  28. }
  29. return count, nil
  30. }
  31. func (s *workbenchService) Notification(tenantId int) (*dao.Notification, *util.Errors) {
  32. notification, err := dao.GetNotification(tenantId)
  33. if err != nil {
  34. return nil, util.FailResponse(err.Error(), nil)
  35. }
  36. return notification, nil
  37. }
  38. func (s *workbenchService) LightRate(tenantId int) (*model.RspLightRate, *util.Errors) {
  39. var rsp model.RspLightRate
  40. return &rsp, nil
  41. }