|
@@ -1,7 +1,7 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
import com.diagbot.dto.IndicationDTO;
|
|
|
-import com.diagbot.dto.PushCoreDTO;
|
|
|
+import com.diagbot.dto.PushDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.facade.IndicationFacade;
|
|
|
import com.diagbot.vo.IndicationPushVO;
|
|
@@ -40,10 +40,10 @@ public class CoreController {
|
|
|
|
|
|
@ApiOperation(value = "推送API[zhoutg]", notes = "类型(多选必填),1:症状,4:查体结果,5:检验,6:检查,7:诊断")
|
|
|
@PostMapping("/push")
|
|
|
- public RespDTO<PushCoreDTO> push(@RequestBody PushVO pushVo) {
|
|
|
+ public RespDTO<PushDTO> push(@RequestBody PushVO pushVo) {
|
|
|
// return RespDTO.onSuc(pushFacade.pushFac(pushVo));
|
|
|
- PushCoreDTO pushCoreDTO = new PushCoreDTO();
|
|
|
- return RespDTO.onSuc(pushCoreDTO);
|
|
|
+ PushDTO pushDTO = new PushDTO();
|
|
|
+ return RespDTO.onSuc(pushDTO);
|
|
|
}
|
|
|
}
|
|
|
|