springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -8259,4 +8259,7 @@ */ @GetMapping("/microcommercialstreet/endStatusForMcsGame") R endStatusForMcsGame(); @GetMapping("/reserve/record/delete") R deleteRecord(@RequestParam("recordId")Long recordId); } springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/java/com/panzhihua/community_backstage/api/ComActReserveApi.java
@@ -754,4 +754,10 @@ public R getWestCommunityLists() { return communityService.getWestCommunityLists(null); } @ApiOperation(value = "删除预约登记记录") @GetMapping("/record/delete") public R deleteRecord(@RequestParam("recordId")Long recordId){ return communityService.deleteRecord(recordId); } } springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComActReserveApi.java
@@ -12,6 +12,7 @@ import com.panzhihua.service_community.model.dos.ComActReserveRecordDO; import com.panzhihua.service_community.service.*; import com.panzhihua.common.model.dtos.community.reserve.*; import io.swagger.annotations.ApiOperation; import lombok.extern.slf4j.Slf4j; import org.springframework.web.bind.annotation.*; @@ -353,4 +354,9 @@ public R bigScreenStaticsReserve(@RequestParam("communityId") Long communityId){ return comActReserveAnswerContentService.bigScreenStaticsReserve(communityId); } @GetMapping("/record/delete") public R deleteRecord(@RequestParam("recordId")Long recordId){ return R.ok(comActReserveRecordService.removeById(recordId)); } }