| | |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveListAdminVO; |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveMakeLeftStatisticsAdminVO; |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveMakeRightStatisticsAdminVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.dtos.community.PageUserReserveDTO; |
| | | import com.panzhihua.common.model.vos.community.ComActReserveIndexVo; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | */ |
| | | @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); |
| | | |
| | | } |