IPaperService.java
856 字节
package com.skua.modules.edu.service;
import com.skua.modules.edu.entity.Paper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.skua.modules.edu.vo.PaperVO;
import org.bouncycastle.eac.jcajce.JcaPublicKeyConverter;
import javax.transaction.Transactional;
/**
* 在线考试-试卷
*/
public interface IPaperService extends IService<Paper> {
/***
* 添加试卷、试卷试题表
* @param paperVO
* @return
*/
public int savePaper(PaperVO paperVO)throws Exception;
/**
* 修改试卷、试卷试题表
* @param paperVO
* @return
* @throws Exception
*/
public boolean updatePaper(PaperVO paperVO) throws Exception ;
/***
* 根据试卷编号获取试卷以及试题集合
* @param id
* @return
*/
public PaperVO queryById(String id);
}