|
@@ -6,7 +6,6 @@ import com.diagbot.client.bean.SearchData;
|
|
|
import com.diagbot.dto.PushDTO;
|
|
|
import com.diagbot.dto.PushKYJDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
-import com.diagbot.enums.InputModeEnum;
|
|
|
import com.diagbot.facade.AssembleFacade;
|
|
|
import com.diagbot.facade.PushFacade;
|
|
|
import com.diagbot.vo.PushKYJVO;
|
|
@@ -64,7 +63,7 @@ public class PushController {
|
|
|
"patientId:病人id,Long<br>" +
|
|
|
"disType:诊断类型,1-慢病,2-急诊,普通病不填,Integer<br>" +
|
|
|
"indications:指标结果,String<br>" +
|
|
|
- "adverseReactions:不良反应,List<不良反应明细><br>")
|
|
|
+ "adverseReactions:不良反应,String<br>")
|
|
|
@PostMapping("/pushInner")
|
|
|
@SysLogger("pushInner")
|
|
|
public RespDTO<PushDTO> pushInner(@RequestBody @Valid PushVO pushVO) {
|
|
@@ -94,7 +93,7 @@ public class PushController {
|
|
|
"patientId:病人id,Long<br>" +
|
|
|
"disType:诊断类型,1-慢病,2-急诊,普通病不填,Integer<br>" +
|
|
|
"indications:指标结果,String<br>" +
|
|
|
- "adverseReactions:不良反应,List<不良反应明细><br>")
|
|
|
+ "adverseReactions:不良反应,String<br>")
|
|
|
@PostMapping("/pushTreatment")
|
|
|
@SysLogger("pushTreatment")
|
|
|
public RespDTO<Map<String, Object>> pushTreatment(@RequestBody @Valid PushVO pushVO) {
|
|
@@ -127,7 +126,7 @@ public class PushController {
|
|
|
"scaleId:量表id,Long<br>" +
|
|
|
"patientId:病人id(治疗方案),Long<br>" +
|
|
|
"disType:诊断类型,1-慢病,2-急诊,普通病不填,Integer<br>" +
|
|
|
- "adverseReactions:不良反应(治疗方案),List<不良反应明细><br>")
|
|
|
+ "adverseReactions:不良反应(治疗方案),String<br>")
|
|
|
@PostMapping("/pushText")
|
|
|
@SysLogger("pushText")
|
|
|
public RespDTO<PushDTO> pushText(@RequestBody @Valid PushVO pushVO) {
|