123456789101112131415161718192021222324252627 |
- 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
- }
|