|
@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
import javax.validation.Valid;
|
|
|
|
|
|
@@ -36,6 +37,7 @@ public class TreatmentController {
|
|
"dis:诊断<br>")
|
|
"dis:诊断<br>")
|
|
@PostMapping("/getTreatment")
|
|
@PostMapping("/getTreatment")
|
|
@SysLogger("getTreatment")
|
|
@SysLogger("getTreatment")
|
|
|
|
+ @ApiIgnore
|
|
public RespDTO<TreatmentDTO> getTreatment(@RequestBody @Valid TreatmentVO treatmentVO) {
|
|
public RespDTO<TreatmentDTO> getTreatment(@RequestBody @Valid TreatmentVO treatmentVO) {
|
|
//TreatmentDTO data = treatmentFacade.getTreatment(treatmentVO);
|
|
//TreatmentDTO data = treatmentFacade.getTreatment(treatmentVO);
|
|
return RespDTO.onSuc(null);
|
|
return RespDTO.onSuc(null);
|