|
@@ -15,6 +15,7 @@ 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;
|
|
|
|
|
@@ -39,6 +40,7 @@ public class PatientInfoController {
|
|
|
"hospitalCode:医院编号,必填<br>")
|
|
|
@PostMapping("/getPatientInfo")
|
|
|
@SysLogger("getPatientInfo")
|
|
|
+ @ApiIgnore
|
|
|
public RespDTO<PatientInfoDTO> getPatientInfo(@Valid @RequestBody PatientInfoVO patientInfoVO) {
|
|
|
PatientInfoDTO data = patientInfoFacade.getPatientInfo(patientInfoVO);
|
|
|
return RespDTO.onSuc(data);
|