Browse Source

术语关联维护修改

rgb 6 years ago
parent
commit
0a3b553bd2

+ 19 - 0
knowledgeman-service/src/main/java/com/diagbot/facade/RelationContactFacade.java

@@ -0,0 +1,19 @@
+package com.diagbot.facade;
+
+import org.springframework.stereotype.Component;
+
+import com.diagbot.service.impl.RelationServiceImpl;
+
+/**
+ * @Description: 医学术语关联业务层
+ * @author: Weixuan Huang
+ * @time: 2019/1/16 14:17
+ */
+@Component
+public class RelationContactFacade extends RelationServiceImpl {
+	
+    
+   
+    
+
+}

+ 30 - 0
knowledgeman-service/src/main/java/com/diagbot/web/RelationContactController.java

@@ -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;
+    
+    
+    
+}