|
@@ -0,0 +1,30 @@
|
|
|
+package com.diagbot.web;
|
|
|
+
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import com.diagbot.facade.RelationContactFacade;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Weixuan Huang
|
|
|
+ * @since 2019-01-30
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/relationContact")
|
|
|
+@SuppressWarnings("unchecked")
|
|
|
+@Api(value = "医学术语关联维护相关API", tags = { "医学术语关联维护相关API" })
|
|
|
+public class RelationContactController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private RelationContactFacade relationContactFacade;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+}
|