IPaperService.java 651 字节
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 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 ;

}