package service import ( "iot_manager_service/app/device/dao" "iot_manager_service/util" ) // 中间件管理服务 var WorkbenchService = new(workbenchService) type workbenchService struct{} func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *util.Errors) { counts, err := dao.GetDeviceCount(tenantId) if err != nil { return nil, util.FailResponse(err.Error(), nil) } return counts, nil } func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *util.Errors) { count, err := dao.GetAlarmCount(tenantId) if err != nil { return nil, util.FailResponse(err.Error(), nil) } return count, nil }