|
@@ -5,7 +5,9 @@ import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.dto.his.DoctorHosDTO;
|
|
|
import com.diagbot.facade.his.DoctorHosFacade;
|
|
|
+import com.diagbot.facade.his.FeedbackHosFacade;
|
|
|
import com.diagbot.vo.his.DoctorHosVO;
|
|
|
+import com.diagbot.vo.his.FeedbackHosVO;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -32,6 +34,9 @@ public class DataViewController {
|
|
|
@Autowired
|
|
|
private DoctorHosFacade doctorHosFacade;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private FeedbackHosFacade feedbackHosFacade;
|
|
|
+
|
|
|
@ApiOperation(value = "获取HIS医生信息")
|
|
|
@PostMapping("/getDoctorHos")
|
|
|
@SysLogger("getDoctorHos")
|
|
@@ -39,4 +44,14 @@ public class DataViewController {
|
|
|
return RespDTO.onSuc(doctorHosFacade.getDoctorInfo(doctorHosVO));
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取HIS医生信息")
|
|
|
+ @PostMapping("/pushFeedback")
|
|
|
+ @SysLogger("pushFeedback")
|
|
|
+ public RespDTO pushFeedback(@RequestBody FeedbackHosVO feedbackHosVO){
|
|
|
+ return feedbackHosFacade.pushFeedback(feedbackHosVO);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|