diff --git a/.idea/misc.xml b/.idea/misc.xml index e2044d1..6b782cf 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/health-consultation-server/src/main/java/com/health/consultation/server/controller/InquiryController.java b/health-consultation-server/src/main/java/com/health/consultation/server/controller/InquiryController.java new file mode 100644 index 0000000..7b94d8e --- /dev/null +++ b/health-consultation-server/src/main/java/com/health/consultation/server/controller/InquiryController.java @@ -0,0 +1,24 @@ +package com.health.consultation.server.controller; + + +import com.health.common.core.domain.Result; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + * @author Administrator + */ +@RestController +@RequestMapping ("/iQL") +public class InquiryController { + + + @PostMapping ("/get") + public Result GetAListOfHistoricalChats () { + + return Result.success (); + } + + +} diff --git a/pom.xml b/pom.xml index 89ea821..3ec4818 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,6 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.health health-consultation-service 3.6.3 pom