| | |
| | | package com.ruoyi.shop.mapper.shop; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.shop.domain.dto.ShopAppointableTimeListDto; |
| | | import com.ruoyi.shop.domain.vo.MyAppointmentListVo; |
| | | import com.ruoyi.shop.domain.vo.ShopAppointableTimeListVo; |
| | | import com.ruoyi.system.api.domain.poji.shop.ShopAppointableTime; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | * @return |
| | | */ |
| | | List<MyAppointmentListVo> pageMyAppointmentList(Page<MyAppointmentListVo> page, @Param("userId") Long userId, @Param("status") Integer status); |
| | | |
| | | |
| | | /** |
| | | * 商户端获取预约列表数据 |
| | | * |
| | | * @param page |
| | | * @param dto |
| | | * @return |
| | | */ |
| | | List<ShopAppointableTime> getShopAppointableTimeList(Page<ShopAppointableTimeListVo> page, @Param("item") ShopAppointableTimeListDto dto); |
| | | |
| | | |
| | | /** |
| | | * 定时任务修改预约状态 |
| | | */ |
| | | void taskUpdateStatus(); |
| | | } |