From 453e3471e94b91169beec1e258a06a132d927011 Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 02 十二月 2024 15:01:50 +0800
Subject: [PATCH] 1

---
 src/main/java/com/yssh/controller/FeedbackController.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/yssh/controller/FeedbackController.java b/src/main/java/com/yssh/controller/FeedbackController.java
new file mode 100644
index 0000000..eac0676
--- /dev/null
+++ b/src/main/java/com/yssh/controller/FeedbackController.java
@@ -0,0 +1,31 @@
+package com.yssh.controller;
+
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.yssh.service.FeedbackService;
+import com.yssh.utils.Result;
+
+import javax.annotation.Resource;
+
+@Api(tags="婧簮鍙嶉")
+@RestController
+@RequestMapping("/feedback")
+@SuppressWarnings("rawtypes")
+public class FeedbackController {
+	@Resource
+	private FeedbackService feedbackService;
+
+	@GetMapping("/feedback")
+	@ApiOperation(value = "婧簮鍙嶉", notes = "杩涜婧簮鍙嶉")
+	public Result suYuanFeedback(
+			@RequestParam(value = "id", required = true) Long id, @RequestParam(value = "practicalId", required = true) String practicalId,
+			@RequestParam(value = "practicalVocsName", required = true) String practicalVocsName, @RequestParam(value = "practicalValue", required = true) double practicalValue) {
+		return Result.OK(feedbackService.suYuanFeedback(id, practicalId, practicalVocsName, practicalValue));
+	}
+}

--
Gitblit v1.9.3