From 5c4aeb18edb907fd7729b6002b204801ce1077b0 Mon Sep 17 00:00:00 2001 From: zhanghaining <2218834824@qq.com> Date: Tue, 24 Oct 2023 21:44:41 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E8=AF=8A=E9=A1=B9=E7=9B=AE=E6=90=AD?= =?UTF-8?q?=E5=BB=BA1024?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/misc.xml | 1 - .idea/uiDesigner.xml | 124 ++++++++++++++++++ .../server/controller/InquiryController.java | 24 ++++ pom.xml | 1 - 4 files changed, 148 insertions(+), 2 deletions(-) create mode 100644 .idea/uiDesigner.xml create mode 100644 health-consultation-server/src/main/java/com/health/consultation/server/controller/InquiryController.java 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