From 871d4095b07cedacb7fbef4c38d64982f539c404 Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期四, 09 五月 2024 15:40:15 +0800 Subject: [PATCH] 测试提交 --- src/main/java/com/flow/controller/JieMiController.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/flow/controller/JieMiController.java b/src/main/java/com/flow/controller/JieMiController.java new file mode 100644 index 0000000..918a507 --- /dev/null +++ b/src/main/java/com/flow/controller/JieMiController.java @@ -0,0 +1,27 @@ +// +// Source code recreated from a .class file by IntelliJ IDEA +// (powered by FernFlower decompiler) +// + +package com.flow.controller; + +import com.flow.service.JieMiService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping({"/hxzk"}) +public class JieMiController { + @Autowired + JieMiService jieMiService; + + public JieMiController() { + } + + @PostMapping({"jiemi"}) + public String JieMi(String Zong) throws Exception { + return this.jieMiService.JieMi(Zong); + } +} -- Gitblit v1.9.3