eight
2024-08-13 7660fe12273a6b132256a2fa83ca1b11d6b2381f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cn.lihu.jh.module.system.api.dept;
 
import cn.lihu.jh.framework.common.util.object.BeanUtils;
import cn.lihu.jh.module.system.api.dept.dto.PostRespDTO;
import cn.lihu.jh.module.system.dal.dataobject.dept.PostDO;
import cn.lihu.jh.module.system.service.dept.PostService;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.Collection;
import java.util.List;
 
/**
 * 岗位 API 实现类
 *
 * @author 芋道源码
 */
@Service
public class PostApiImpl implements PostApi {
 
    @Resource
    private PostService postService;
 
    @Override
    public void validPostList(Collection<Long> ids) {
        postService.validatePostList(ids);
    }
 
    @Override
    public List<PostRespDTO> getPostList(Collection<Long> ids) {
        List<PostDO> list = postService.getPostList(ids);
        return BeanUtils.toBean(list, PostRespDTO.class);
    }
 
}