zhaowenxuan
2025-04-08 b87b01b5267a7715eba68253674f6843f76e0a5b
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
package com.ltkj.web.controller.system;
 
import com.ltkj.common.core.domain.AjaxResult;
import com.ltkj.common.utils.poi.ExcelUtil;
import com.ltkj.hosp.domain.TjOrder;
import com.ltkj.hosp.mapper.TjOrderMapper;
import com.ltkj.hosp.service.ITjOrderService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
 
/**
 * ClassName: JiMuBaoBiaoApiControlle <br/>
 * Description: <br/>
 * date: 2025/2/13 18:58<br/>
 *
 * @author zjh<br />
 */
 
 
@RestController
@RequestMapping("/check")
@Api(tags = "AAAAAAAAAAAA总检医师相关接口")
@Slf4j
public class JiMuBaoBiaoApiControlle {
    @Resource
    private ITjOrderService orderService;
    @Autowired
    private TjOrderMapper orderMapper;
 
    @GetMapping("/getDaoJianDanRenYuanXinXi")
    @ApiOperation(value = "导检人员信息接口")
    public AjaxResult getDaoJianDanRenYuanXinXi(@RequestParam String tjh,
                                                @RequestParam String yqid) {
 
        return AjaxResult.success();
    }
 
}