workbenchService.go 450 B

1234567891011121314151617181920
  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 string) ([]dao.CountDevice, *util.Errors) {
  10. // 创建查询实例
  11. counts, err := dao.GetDeviceCount(tenantId)
  12. if err != nil {
  13. return nil, util.FailResponse(err.Error(), nil)
  14. }
  15. return counts, nil
  16. }