潘志宝
2024-08-21 c39abccd937de093fc067abffac5f66b758bc97b
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
36
37
38
39
40
41
42
43
44
45
46
47
package com.iailab.module.system.framework.operatelog.core;
 
import cn.hutool.core.convert.Convert;
import cn.hutool.core.util.StrUtil;
import com.iailab.module.system.dal.dataobject.dept.PostDO;
import com.iailab.module.system.service.dept.PostService;
import com.mzt.logapi.service.IParseFunction;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
import javax.annotation.Resource;
 
/**
 * 岗位名字的 {@link IParseFunction} 实现类
 *
 * @author HUIHUI
 */
@Slf4j
@Component
public class PostParseFunction implements IParseFunction {
 
    public static final String NAME = "getPostById";
 
    @Resource
    private PostService postService;
 
    @Override
    public String functionName() {
        return NAME;
    }
 
    @Override
    public String apply(Object value) {
        if (StrUtil.isEmptyIfStr(value)) {
            return "";
        }
 
        // 获取岗位信息
        PostDO post = postService.getPost(Convert.toLong(value));
        if (post == null) {
            log.warn("[apply][获取岗位{{}}为空", value);
            return "";
        }
        return post.getName();
    }
 
}