tangzy
2021-07-28 214b23cea7710f352199930a3617948c809a6e2f
src/main/java/org/springblade/modules/information/controller/InformationController.java
@@ -154,10 +154,10 @@
   @PostMapping("/remove")
   @ApiOperationSupport(order = 8)
   @ApiOperation(value = "删除", notes = "传入ids")
   public R remove(String creditcode) {
      informationService.deleteIn(creditcode);
      informationService.deleteSh(creditcode);
      informationService.deleteMe(creditcode);
   public R remove(String ids) {
      informationService.deleteIn(ids);
      informationService.deleteSh(ids);
      informationService.deleteMe(ids);
      return R.success("删除成功");
   }
@@ -690,4 +690,5 @@
      List<Map<Object, Object>> maps = informationService.selectIn(jurisdiction);
      return R.data(maps);
   }
}