| | |
| | | package com.ruoyi.shop.mapper.shop; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.ruoyi.shop.domain.vo.MyAppointmentListVo; |
| | | import com.ruoyi.system.api.domain.poji.shop.ShopAppointableTime; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/5/26 15:13 |
| | | */ |
| | | public interface ShopAppointableTimeMapper extends BaseMapper<ShopAppointableTime> { |
| | | |
| | | |
| | | /** |
| | | * 分页查询我的预约列表 |
| | | * |
| | | * @param page |
| | | * @param userId |
| | | * @param status |
| | | * @return |
| | | */ |
| | | List<MyAppointmentListVo> pageMyAppointmentList(Page<MyAppointmentListVo> page, @Param("userId") Long userId, @Param("status") Integer status); |
| | | } |