package com.ots.project.exam.mapper; import com.ots.project.exam.domain.SysUserPaper; import java.util.List; public interface SysUserPaperMapper { SysUserPaper selectSysUserPaperById(Long userId); List selectSysUserPaperList(SysUserPaper sysUserPaper); int insertSysUserPaper(SysUserPaper sysUserPaper); int updateSysUserPaper(SysUserPaper sysUserPaper); int deleteSysUserPaperById(Long userId); int deleteSysUserPaperByIds(String[] userIds); }