zrj
2024-10-24 1a4792fdff667d3b9590c6ab4c085a08cdca1399
src/main/java/org/springblade/modules/hd/controller/HdController.java
@@ -56,6 +56,12 @@
   @ApiOperation(value = "详情", notes = "传入hd")
   public R<Hd> detail(Hd hd) {
      Hd detail = hdService.getOne(Condition.getQueryWrapper(hd));
      Long id = detail.getId();
      String d=String.valueOf(id);
      String s = hdService.selectInfo(d);
      String name = hdService.selectInfos(d);
      detail.setUrl(s);
      detail.setMapname(name);
      return R.data(detail);
   }