| | |
| | | */ |
| | | @Mapper |
| | | public interface ComActReserveMapper extends BaseMapper<ComActReserveDO> { |
| | | /** |
| | | * 查询预约登记首页banner |
| | | * @param communityId |
| | | * @return 预约登记首页banner列表 |
| | | */ |
| | | List<ComActReserveIndexVo> indexBanner(Long communityId); |
| | | /** |
| | | * 查询预约登记应用列表 |
| | | * @param communityId |
| | | * @return 预约登记应用列表 |
| | | */ |
| | | List<ComActReserveIndexVo> indexApplication(Long communityId); |
| | | |
| | | /** |
| | |
| | | */ |
| | | List<ComActReserveListAdminVO> listReserveAdmin(@Param("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 取消预约时,预约登记参加人数减少 |
| | | * @param reserveId 预约登记id |
| | | */ |
| | | void addReserveCountById(@Param("reserveId") Long reserveId); |
| | | |
| | | /** |
| | | * 小程序查询所有进行中的预约登记 |
| | | * @param communityId 社区id |
| | | * @return 社区所有进行中的预约登记列表 |
| | | */ |
| | | List<ComActReserveIndexVo> getReserveIndexList(@Param("communityId") Long communityId); |
| | | |
| | | } |