From c253b555c7905c5136d47cd615ef545fa50cc6ad Mon Sep 17 00:00:00 2001
From: 935090232@qq.com <ak473600000>
Date: Sun, 20 Feb 2022 21:24:16 +0800
Subject: [PATCH] Merge branch 'api_score_meger'

---
 zq-erp/src/main/java/com/matrix/system/wechart/templateMsg/demo/MsgDemo3.java |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/wechart/templateMsg/demo/MsgDemo3.java b/zq-erp/src/main/java/com/matrix/system/wechart/templateMsg/demo/MsgDemo3.java
new file mode 100644
index 0000000..812757a
--- /dev/null
+++ b/zq-erp/src/main/java/com/matrix/system/wechart/templateMsg/demo/MsgDemo3.java
@@ -0,0 +1,29 @@
+package com.matrix.system.wechart.templateMsg.demo;
+
+import com.matrix.core.pojo.AjaxResult;
+import com.matrix.system.wechart.templateMsg.Task.UniformMsgSentTask;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import java.io.IOException;
+
+@Controller
+@RequestMapping(value = "test3")
+public class MsgDemo3 {
+
+
+    @Autowired
+    UniformMsgSentTask uniformMsgSentTask;
+
+    @RequestMapping("/template")
+    @ResponseBody
+    public AjaxResult template() throws IOException {
+
+        return AjaxResult.buildSuccessInstance("1");
+
+    }
+
+
+}

--
Gitblit v1.9.1