You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
Java
26 lines
1.1 KiB
Java
package com.ibeetl.jlw.dao;
|
|
|
|
import com.ibeetl.jlw.entity.ExamTaskSecondQuestionStep;
|
|
import com.ibeetl.jlw.web.query.ExamTaskSecondQuestionStepQuery;
|
|
import org.beetl.sql.core.engine.PageQuery;
|
|
import org.beetl.sql.mapper.BaseMapper;
|
|
import org.beetl.sql.mapper.annotation.SqlResource;
|
|
import org.beetl.sql.mapper.annotation.Update;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
* ExamTaskSecondQuestionStep Dao
|
|
*/
|
|
@SqlResource("jlw.examTaskSecondQuestionStep")
|
|
public interface ExamTaskSecondQuestionStepDao extends BaseMapper<ExamTaskSecondQuestionStep>{
|
|
public PageQuery<ExamTaskSecondQuestionStep> queryByCondition(PageQuery query);
|
|
@Update
|
|
public void deleteExamTaskSecondQuestionStepByIds(String ids);
|
|
@Update
|
|
public void deleteByExamId(Long examId);
|
|
public List<ExamTaskSecondQuestionStep> getByExamId(Long examId);
|
|
public List<ExamTaskSecondQuestionStep> getValuesWithOutAnswer (ExamTaskSecondQuestionStepQuery examTaskSecondQuestionStepQuery);
|
|
public List<ExamTaskSecondQuestionStep> getValuesByQuery (ExamTaskSecondQuestionStepQuery examTaskSecondQuestionStepQuery);
|
|
} |