package com.panzhihua.service_community.dao; 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 * @create 2021-08-23 10:34:03 * @describe 预约登记题目选项mapper类 */ @Mapper public interface ComActReserveSubMapper extends BaseMapper { /** * 根据预约登记id查询题目列表 * @param reserveId 预约登记id * @return 题目列表 */ List getReserveSubjectList(@Param("reserveId") Long reserveId); List subjectSelectionListAdmin(@Param("reserveSubId") Long reserveSubId); }