| | |
| | | package com.panzhihua.service_community.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubDO; |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.panzhihua.common.model.vos.community.reserve.ComActReserveSubListVO; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveSubDO; |
| | | |
| | | /** |
| | | * @auther lyq |
| | |
| | | @Mapper |
| | | public interface ComActReserveSubMapper extends BaseMapper<ComActReserveSubDO> { |
| | | |
| | | /** |
| | | * 根据预约登记id查询题目列表 |
| | | * @param reserveId 预约登记id |
| | | * @return 题目列表 |
| | | */ |
| | | List<ComActReserveSubListVO> getReserveSubjectList(@Param("reserveId") Long reserveId); |
| | | |
| | | |
| | | List<String> subjectSelectionListAdmin(@Param("reserveSubId") Long reserveSubId); |
| | | } |