From 134eca4362913537b63d35b51b2a9c2a1870e1a5 Mon Sep 17 00:00:00 2001 From: puhanshu <a9236326> Date: 星期五, 03 十二月 2021 15:57:35 +0800 Subject: [PATCH] 房屋租赁修改 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveService.java | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveService.java index 1a2ef64..166e30b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveService.java @@ -22,6 +22,13 @@ R commit(ComActReserveCommitVO comActReserveCommitVO); /** + * 外部提交预约登记 + * @param comActReserveCommitVO + * @return 预约登记结果 + */ + R commitNoToken(ComActReserveCommitVO comActReserveCommitVO); + + /** * 小程序我的预约登记 * @param pageUserReserveDTO * @return 预约登记列表 @@ -103,6 +110,13 @@ * @param id * @return */ - R getById(Long id,Long userId,Long recordId); + R getById(Long id,Long userId,Long recordId,Integer isBack); + + /** + * 小程序查询所有进行中的预约登记 + * @param communityId 社区id + * @return 社区所有进行中的预约登记列表 + */ + R reserveListApplets(Long communityId); } -- Gitblit v1.7.1