tenantService.go 331 B

12345678910111213141516171819
  1. package service
  2. import (
  3. "iot_manager_service/app/system/dao"
  4. "iot_manager_service/util"
  5. )
  6. // 租户管理服务
  7. var TenantService = new(tenantService)
  8. type tenantService struct{}
  9. func (s *tenantService) Get(passKey string) (*dao.Tenant, *util.Errors) {
  10. tenant := &dao.Tenant{
  11. TenantId: passKey,
  12. }
  13. return tenant, nil
  14. }