对比新文件 |
| | |
| | | // |
| | | // 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); |
| | | } |
| | | } |