/**
 * Copyright &copy; 2012-2014 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
 */
package com.cku.oa.groomer.dao;

import com.thinkgem.jeesite.common.persistence.CrudDao;
import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
import com.cku.oa.groomer.entity.GroomerExamQuestions;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * 美容考试题表DAO接口
 * @author hjx
 * @version 2023-11-23
 */
@MyBatisDao
public interface GroomerExamQuestionsDao extends CrudDao<GroomerExamQuestions> {

    List<GroomerExamQuestions> getByExamPaperId(@Param("examPaperId") String examPaperId);

    List<GroomerExamQuestions> getByExamPaperIdAndNoDelFlag(@Param("examPaperId") String examPaperId);
}