|
|
@ -4,6 +4,7 @@ import com.supervision.model.ConfigDrug;
|
|
|
|
import com.supervision.model.Process;
|
|
|
|
import com.supervision.model.Process;
|
|
|
|
import com.supervision.model.TreatmentPlanRecord;
|
|
|
|
import com.supervision.model.TreatmentPlanRecord;
|
|
|
|
import com.supervision.pojo.vo.DealPlanResVO;
|
|
|
|
import com.supervision.pojo.vo.DealPlanResVO;
|
|
|
|
|
|
|
|
import com.supervision.pojo.vo.TreatmentPlanConfirmReqVo;
|
|
|
|
import com.supervision.service.TreatmentPlanService;
|
|
|
|
import com.supervision.service.TreatmentPlanService;
|
|
|
|
import com.supervision.vo.manage.TreatmentPlanTreeNode;
|
|
|
|
import com.supervision.vo.manage.TreatmentPlanTreeNode;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
@ -36,9 +37,9 @@ public class TreatmentPlanController {
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("确认处置计划")
|
|
|
|
@ApiOperation("确认处置计划")
|
|
|
|
@PostMapping("/confirm")
|
|
|
|
@PostMapping("/confirm")
|
|
|
|
public boolean confirmTreatmentPlan(@RequestBody Process process) {
|
|
|
|
public boolean confirmTreatmentPlan(@RequestBody TreatmentPlanConfirmReqVo reqVo) {
|
|
|
|
|
|
|
|
|
|
|
|
return treatmentPlanService.confirmTreatmentPlan(process.getPatientId(),String.valueOf(process.getStatus()));
|
|
|
|
return treatmentPlanService.confirmTreatmentPlan(reqVo.getProcessId(),String.valueOf(reqVo.getStatus()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("修改处置计划记录")
|
|
|
|
@ApiOperation("修改处置计划记录")
|
|
|
|