czt
2025-06-03 4901f0cf60ecc6484d149ca5e9a0083e4b21db21
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.fzzy.igds.dzhwk.manager;
 
import com.fzzy.igds.dzhwk.data.DzhwkConfigData;
import com.fzzy.igds.dzhwk.domain.Dept;
import com.fzzy.igds.file.FileService;
import com.fzzy.igds.sys.CoreDeptService;
import com.ruoyi.common.config.FrameworkConfig;
import com.ruoyi.common.utils.StringUtils;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
 
import javax.annotation.Resource;
import java.io.File;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/6/3 16:06
 */
@Slf4j
@Component("WebManager")
public class WebManager {
 
    @Resource
    private CoreDeptService coreDeptService;
    @Resource
    private FileService fileService;
    @Resource
    private DzhwkConfigData dzhwkConfigData;
    /**
     * 根据单位ID获取单位信息
     *
     * @param deptId
     * @return
     */
    public Dept getDeptFile(String deptId) {
        if (StringUtils.isEmpty(deptId)) {
            return null;
        }
        Dept dept = coreDeptService.getDataById(deptId);
        dept.setImgFilePath("未上传");
        if (StringUtils.isNotEmpty(dept.getFileId())) {
            String imgBathPath = fileService.getDeptFilePath(dept.getCompanyId()) + dept.getFileId();
            File imgFile = new File(imgBathPath);
            if (imgFile.exists()) {
                imgBathPath = imgBathPath.replace(dzhwkConfigData.getProfile(), "/profile/");
                dept.setImgFilePath(imgBathPath);
            }
        }
 
        dept.setVideoFilePath("未上传");
        if (StringUtils.isNotEmpty(dept.getVideoId())) {
            String imgBathPath = fileService.getDeptFilePath(dept.getCompanyId()) + dept.getVideoId();
            File imgFile = new File(imgBathPath);
            if (imgFile.exists()) {
                imgBathPath = imgBathPath.replace(dzhwkConfigData.getProfile(), "/profile/");
                dept.setVideoFilePath(imgBathPath);
            }
        }
        return dept;
    }
}