刘光辉
13 小时以前 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
package jnpf.elnController;
 
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jnpf.base.ActionResult;
import jnpf.elnEntity.ElnMubanFileVo;
import jnpf.elnService.ElnDianziJiluMubanService;
import lombok.RequiredArgsConstructor;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
 
@Tag(name = "ELN电子记录模板")
@RestController
@RequestMapping("/dianzi_jilu_muban")
@RequiredArgsConstructor
public class ElnDianziJiluMubanController {
 
    private final ElnDianziJiluMubanService mubanService;
 
    @Operation(summary = "按检验项目查询模板文件")
    @GetMapping("/file")
    public ActionResult<ElnMubanFileVo> file(
            @RequestParam(value = "jianyan_xiangmu", required = false) String jianyanXiangmu) {
        if (!StringUtils.hasText(jianyanXiangmu)) {
            return ActionResult.fail("检验项目不能为空");
        }
        return ActionResult.success(mubanService.getFile(jianyanXiangmu.trim()));
    }
}