diff --git a/Debate_backend/.idea/uiDesigner.xml b/Debate_backend/.idea/uiDesigner.xml
new file mode 100644
index 0000000..2b63946
--- /dev/null
+++ b/Debate_backend/.idea/uiDesigner.xml
@@ -0,0 +1,124 @@
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+ -
+
+
+
+
+ -
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/Debate_backend/src/main/java/com/learning/newdemo/common/Result.java b/Debate_backend/src/main/java/com/learning/newdemo/common/Result.java
index 38fcf5f..1c18e82 100644
--- a/Debate_backend/src/main/java/com/learning/newdemo/common/Result.java
+++ b/Debate_backend/src/main/java/com/learning/newdemo/common/Result.java
@@ -8,6 +8,7 @@ import java.io.Serializable;
* 统一API返回结果封装
*/
@Data
+// Serializable接口的作用是:标记当前类可以通过序列化在网络中传播
public class Result implements Serializable {
private static final long serialVersionUID = 1L;
diff --git a/Debate_backend/src/main/java/com/learning/newdemo/controller/WxAIController.java b/Debate_backend/src/main/java/com/learning/newdemo/controller/WxAIController.java
new file mode 100644
index 0000000..362c836
--- /dev/null
+++ b/Debate_backend/src/main/java/com/learning/newdemo/controller/WxAIController.java
@@ -0,0 +1,86 @@
+package com.learning.newdemo.controller;
+
+
+import com.learning.newdemo.common.Result;
+import com.learning.newdemo.service.WxArgumentService;
+import com.learning.newdemo.service.WxReviewService;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.HashMap;
+import java.util.Map;
+
+@Slf4j
+@RestController
+@RequestMapping("api/ai")
+public class WxAIController {
+ @Autowired
+ private WxArgumentService wxArgumentService;
+
+ @Autowired
+ private WxReviewService wxReviewService;
+
+ private String topic;
+
+ private String stance;
+
+ private String content;
+
+ @PostMapping("/argument")
+ public Result