linwei
2024-01-31 b3b566ebdfed4005aaa513da3d5d2fd3924903cc
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));
   }
   /**
    * 场所详情表 分页
    */
@@ -109,7 +122,7 @@
    */
   @PostMapping("/updatePlaceExt")
   @ApiOperation(value = "自定义更新", notes = "传入placeExt")
   public R updatePlaceExt(@RequestBody PlaceExtEntity placeExt) {
   public R updatePlaceExt(@RequestBody PlaceExtVO placeExt) {
      return R.status(placeExtService.updatePlaceExt(placeExt));
   }