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

org.openea.eap.module.system.api.dept.PostApiImpl Maven / Gradle / Ivy

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

import org.openea.eap.framework.common.pojo.CommonResult;
import org.openea.eap.framework.common.util.object.BeanUtils;
import org.openea.eap.module.system.api.dept.dto.PostRespDTO;
import org.openea.eap.module.system.dal.dataobject.dept.PostDO;
import org.openea.eap.module.system.service.dept.PostService;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RestController;

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

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

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

    @Resource
    private PostService postService;

    @Override
    public CommonResult validPostList(Collection ids) {
        postService.validatePostList(ids);
        return success(true);
    }

    @Override
    public CommonResult> getPostList(Collection ids) {
        List list = postService.getPostList(ids);
        return success(BeanUtils.toBean(list, PostRespDTO.class));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy