|
@@ -1,22 +1,10 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
-import com.diagbot.annotation.SysLogger;
|
|
|
-import com.diagbot.dto.GetInquiryDetailDTO;
|
|
|
-import com.diagbot.dto.HisInquiryDTO;
|
|
|
-import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.facade.PrecServiceFacade;
|
|
|
-import com.diagbot.vo.GetInquiryDetailVO;
|
|
|
-import com.diagbot.vo.HisInquirysVO;
|
|
|
import io.swagger.annotations.Api;
|
|
|
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 springfox.documentation.annotations.ApiIgnore;
|
|
|
-
|
|
|
-import javax.validation.Valid;
|
|
|
-import java.util.List;
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping("/prec")
|
|
@@ -33,23 +21,23 @@ public class PrecServiceController {
|
|
|
* @param hisInquirysVO
|
|
|
* @return
|
|
|
*/
|
|
|
- @PostMapping("/hisInquirys")
|
|
|
+ /*@PostMapping("/hisInquirys")
|
|
|
@SysLogger("hisInquirys")
|
|
|
public RespDTO<List<HisInquiryDTO>> hisInquirys(@Valid @RequestBody HisInquirysVO hisInquirysVO){
|
|
|
List<HisInquiryDTO> hisInquiryDTO = precServiceFacade.hisInquirys(hisInquirysVO);
|
|
|
return RespDTO.onSuc(hisInquiryDTO);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
+ *//**
|
|
|
* 获取病例详情
|
|
|
*
|
|
|
* @param getInquiryDetailVO
|
|
|
* @return
|
|
|
- */
|
|
|
+ *//*
|
|
|
@PostMapping("/hisInquiryDetail")
|
|
|
@SysLogger("hisInquiryDetail")
|
|
|
public RespDTO<GetInquiryDetailDTO> getInquiryDetail(@Valid @RequestBody GetInquiryDetailVO getInquiryDetailVO){
|
|
|
GetInquiryDetailDTO getInquiryDetailDTO = precServiceFacade.getInquiryDetail(getInquiryDetailVO);
|
|
|
return RespDTO.onSuc(getInquiryDetailDTO);
|
|
|
- }
|
|
|
+ }*/
|
|
|
}
|