12345678910111213141516171819 |
- package service
- import (
- "iot_manager_service/app/system/dao"
- "iot_manager_service/util"
- )
- // 租户管理服务
- var TenantService = new(tenantService)
- type tenantService struct{}
- func (s *tenantService) Get(passKey string) (*dao.Tenant, *util.Errors) {
- tenant := &dao.Tenant{
- TenantId: passKey,
- }
- return tenant, nil
- }
|