fei.wang
2024-05-13 19fe5a3d816184549e8ffa011c39f218734da8d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
    }
}