|
@@ -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
|