From e15f561a1f9eddfde503d59baf45a860b131928e Mon Sep 17 00:00:00 2001 From: fei.wang <wf18701153496@163.com> Date: 星期三, 13 八月 2025 14:22:50 +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