gaodm 6 lat temu
rodzic
commit
ea99b9f22c

+ 1 - 0
icss-service/src/main/java/com/diagbot/web/DeptInfoController.java

@@ -30,6 +30,7 @@ import javax.validation.Valid;
 @Api(value = "科室信息API", tags = { "科室信息API" })
 @SuppressWarnings("unchecked")
 @ApiIgnore
+@Deprecated
 public class DeptInfoController {
 
     @Autowired

+ 1 - 0
icss-service/src/main/java/com/diagbot/web/DoctorInfoController.java

@@ -31,6 +31,7 @@ import java.util.List;
 @Api(value = "医生信息API", tags = { "医生信息API" })
 @SuppressWarnings("unchecked")
 @ApiIgnore
+@Deprecated
 public class DoctorInfoController {
 
     @Autowired

+ 3 - 1
icss-service/src/main/java/com/diagbot/web/HospitalInfoController.java

@@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
+import springfox.documentation.annotations.ApiIgnore;
 
 import javax.validation.Valid;
 import java.util.List;
@@ -25,7 +26,8 @@ import java.util.List;
 @RequestMapping("/hospitalInfo")
 @Api(value = "医院信息API", tags = { "医院信息API" })
 @SuppressWarnings("unchecked")
-/*@ApiIgnore*/
+@ApiIgnore
+@Deprecated
 public class HospitalInfoController {
 
     @Autowired

+ 1 - 0
icss-service/src/main/java/com/diagbot/web/PatientInfoController.java

@@ -41,6 +41,7 @@ public class PatientInfoController {
     @PostMapping("/getPatientInfo")
     @SysLogger("getPatientInfo")
     @ApiIgnore
+    @Deprecated
     public RespDTO<PatientInfoDTO> getPatientInfo(@Valid @RequestBody PatientInfoVO patientInfoVO) {
         PatientInfoDTO data = patientInfoFacade.getPatientInfo(patientInfoVO);
         return RespDTO.onSuc(data);

+ 0 - 1
icss-service/src/main/java/com/diagbot/web/TranDiseaseIcdController.java

@@ -38,7 +38,6 @@ public class TranDiseaseIcdController {
                     "hospitalCode:医院编号,必填<br>")
     @PostMapping("/getDiseaseIcds")
     @SysLogger("getDiseaseIcds")
-    /*@ApiIgnore*/
     public RespDTO<List<GetDiseaseIcdDTO>> getDiseaseIcds(@RequestBody @Valid GetDiseaseIcdVO getDiseaseIcdVO) {
         List<GetDiseaseIcdDTO> data = tranDiseaseIcdFacade.getDiseaseIcds(getDiseaseIcdVO);
         return RespDTO.onSuc(data);