刘光辉
16 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.dmsController;
 
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jnpf.base.ActionResult;
import jnpf.dmsService.DmsWenjianBianhaoGuizeFeiqiService;
import jnpf.exception.DataException;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
import java.util.Map;
 
@Slf4j
@Tag(name = "DMS文件编号规则接口", description = "文件编号规则业务操作")
@RestController
@RequestMapping("/biz/wenjian/bianhao/guize")
public class DmsWenjianBianhaoGuizeController {
 
    @Autowired
    private DmsWenjianBianhaoGuizeFeiqiService feiqiService;
 
    @Operation(summary = "废弃文件编号规则")
    @PostMapping("/feiqi")
    public ActionResult<String> feiqi(@RequestBody(required = false) Map<String, Object> formData) {
        String resolvedFlowId = resolveParam(formData, "flow_id", "flowId");
        String resolvedTaskId = resolveParam(formData, "task_id", "taskId");
        try {
            feiqiService.feiqiGuize(resolvedFlowId, resolvedTaskId);
            return ActionResult.success("文件编号规则废弃成功", "文件编号规则废弃成功");
        } catch (DataException e) {
            log.warn("文件编号规则废弃失败:flowId={}, taskId={}, msg={}",
                    resolvedFlowId, resolvedTaskId, e.getMessage());
            return ActionResult.fail(e.getMessage());
        }
    }
 
    private String resolveParam(Map<String, Object> formData, String snakeCaseKey, String camelCaseKey) {
        if (formData == null) {
            return "";
        }
        Object raw = formData.get(snakeCaseKey);
        if (raw == null) {
            raw = formData.get(camelCaseKey);
        }
        return raw == null ? "" : trimToEmpty(String.valueOf(raw));
    }
 
    private String trimToEmpty(String value) {
        return value == null ? "" : value.trim();
    }
}