|
@@ -22,7 +22,6 @@ 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.List;
|
|
|
|
|
|
/**
|
|
@@ -104,13 +103,4 @@ public class InquiryInfoController {
|
|
|
public RespDTO<GetInquiryDTO> getInquiry(@RequestBody @Validated GetInquiryVO getInquiryVO) {
|
|
|
return RespDTO.onSuc(inquiryInfoFacade.getInquiry(getInquiryVO));
|
|
|
}
|
|
|
-
|
|
|
- @ApiOperation(value = "获取病历[by:gaodm]",
|
|
|
- notes = "hospitalCode:医院名称<br>" +
|
|
|
- "inquiryCode:诊序列号<br>")
|
|
|
- @RequestMapping("/getInquiry1")
|
|
|
- @SysLogger("getInquiry1")
|
|
|
- public RespDTO<GetInquiryDTO> getInquiry1(GetInquiryVO getInquiryVO) {
|
|
|
- return RespDTO.onSuc(inquiryInfoFacade.getInquiry(getInquiryVO));
|
|
|
- }
|
|
|
}
|