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
* Description:
* date: 2025/2/13 18:58
* * @author zjh
*/ @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(); } }