|
@@ -5,7 +5,7 @@ import com.rongwei.bscommon.sys.utils.ExceptionUtils;
|
|
|
import com.rongwei.rwcommon.base.R;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
@@ -36,7 +36,7 @@ public class SubConfigController {
|
|
|
*
|
|
|
*/
|
|
|
|
|
|
- @GetMapping("/getModulesById")
|
|
|
+ @PostMapping("/getModulesById")
|
|
|
public R getModulesById(@RequestParam("id")String id){
|
|
|
try {
|
|
|
log.info("进入接口:/subsystem-config/getModulesById,入参为:{}",id);
|