zhongrj
2023-11-10 c5d71879fd0e880ca1886a378126a69e878f2edf
src/main/java/org/springblade/modules/place/controller/PlaceExtController.java
@@ -60,6 +60,19 @@
      PlaceExtEntity detail = placeExtService.getOne(Condition.getQueryWrapper(placeExt));
      return R.data(PlaceExtWrapper.build().entityVO(detail));
   }
   /**
    * 场所详情表 自定义详情
    * @param placeExt
    * @return
    */
   @GetMapping("/getDetail")
   @ApiOperation(value = "自定义详情", notes = "传入placeExt")
   public R<PlaceExtVO> getDetail(PlaceExtVO placeExt) {
      return R.data(placeExtService.getDetail(placeExt));
   }
   /**
    * 场所详情表 分页
    */