All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openea.eap.module.system.api.tenant.TenantApiImpl Maven / Gradle / Ivy

package org.openea.eap.module.system.api.tenant;

import org.openea.eap.framework.common.pojo.CommonResult;
import org.openea.eap.module.system.service.tenant.TenantService;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;
import java.util.List;

import static org.openea.eap.framework.common.pojo.CommonResult.success;

@RestController // 提供 RESTful API 接口,给 Feign 调用
@Validated
public class TenantApiImpl implements TenantApi {

    @Resource
    private TenantService tenantService;

    @Override
    public CommonResult> getTenantIdList() {
        return success(tenantService.getTenantIdList());
    }

    @Override
    public CommonResult validTenant(Long id) {
        tenantService.validTenant(id);
        return success(true);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy