workbenchService.go 645 B

123456789101112131415161718192021222324252627
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/util"
  5. )
  6. // 中间件管理服务
  7. var WorkbenchService = new(workbenchService)
  8. type workbenchService struct{}
  9. func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *util.Errors) {
  10. counts, err := dao.GetDeviceCount(tenantId)
  11. if err != nil {
  12. return nil, util.FailResponse(err.Error(), nil)
  13. }
  14. return counts, nil
  15. }
  16. func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *util.Errors) {
  17. count, err := dao.GetAlarmCount(tenantId)
  18. if err != nil {
  19. return nil, util.FailResponse(err.Error(), nil)
  20. }
  21. return count, nil
  22. }