| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveMakeOperationAdminVO; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @auther lyq |
| | |
| | | @Mapper |
| | | public interface ComActReserveOperationRecordMapper extends BaseMapper<ComActReserveOperationRecordDO> { |
| | | |
| | | /** |
| | | * 根据预约记录id查询预约明细操作记录 |
| | | * @param reserveRecordId 预约记录id |
| | | * @return 预约明细操作记录 |
| | | */ |
| | | List<ComActReserveMakeOperationAdminVO> getMakeOperationList(@Param("reserveRecordId") Long reserveRecordId); |
| | | |
| | | } |