|
@@ -22,6 +22,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
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;
|
|
|
|
|
@@ -36,7 +37,8 @@ import java.util.List;
|
|
|
* @author zhoutg
|
|
|
* @since 2019-08-08
|
|
|
*/
|
|
|
-@RestController("/diagnose")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/diagnose")
|
|
|
@Api(value = "知识库标准化-诊断依据数据维护相关API", tags = { "知识库标准化-诊断依据数据维护相关API" })
|
|
|
public class DiagnoseController {
|
|
|
|