| | |
| | | } |
| | | |
| | | /** |
| | | * 场所详情表 自定义更新 |
| | | * @param placeExt |
| | | * @return |
| | | */ |
| | | @PostMapping("/updatePlaceExt") |
| | | @ApiOperation(value = "自定义更新", notes = "传入placeExt") |
| | | public R updatePlaceExt(@RequestBody PlaceExtEntity placeExt) { |
| | | return R.status(placeExtService.updatePlaceExt(placeExt)); |
| | | } |
| | | |
| | | /** |
| | | * 场所详情表 审核 |
| | | * @param placeExt |
| | | * @return |
| | | */ |
| | | @PostMapping("/checkPlaceExt") |
| | | @ApiOperation(value = "审核", notes = "传入placeExt") |
| | | public R checkPlaceExt(@RequestBody PlaceExtEntity placeExt) { |
| | | return R.status(placeExtService.checkPlaceExt(placeExt)); |
| | | } |
| | | |
| | | /** |
| | | * 场所详情表 新增或修改 |
| | | */ |
| | | @PostMapping("/submit") |