fei.wang
2024-05-09 871d4095b07cedacb7fbef4c38d64982f539c404
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);
    }
}