|
@@ -1,10 +1,21 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
|
|
|
+import com.diagbot.annotation.SysLogger;
|
|
|
+import com.diagbot.dto.PatientInfoDTO;
|
|
|
+import com.diagbot.dto.RespDTO;
|
|
|
+import com.diagbot.facade.PatientInfoFacade;
|
|
|
+import com.diagbot.vo.PatientInfoVO;
|
|
|
import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+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 java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 患者信息表 前端控制器
|
|
@@ -17,5 +28,15 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@RequestMapping("/patientInfo")
|
|
|
@Api(value = "患者信息API", tags = { "患者信息API" })
|
|
|
public class PatientInfoController {
|
|
|
+ @Autowired
|
|
|
+ private PatientInfoFacade patientInfoFacade;
|
|
|
|
|
|
+ @ApiOperation(value = "患者信息——查询[by:wangyu]",
|
|
|
+ notes = "patientCode:患者编号,必填<br>" +
|
|
|
+ "hospitalCode:医院编号,必填<br>")
|
|
|
+ @PostMapping("/getPatientInfo")
|
|
|
+ @SysLogger("getPatientInfo")
|
|
|
+ public RespDTO<List<PatientInfoDTO>> getPatientInfo(@RequestBody PatientInfoVO patientInfoVO) {
|
|
|
+ return patientInfoFacade.getPatientInfo(patientInfoVO);
|
|
|
+ }
|
|
|
}
|