package com.ots.project.exam.service; import com.ots.project.exam.domain.SysUserPaper; import java.util.List; public interface ISysUserPaperService { SysUserPaper selectSysUserPaperById(Long userId); List selectSysUserPaperList(SysUserPaper sysUserPaper); int insertSysUserPaper(SysUserPaper sysUserPaper); int updateSysUserPaper(SysUserPaper sysUserPaper); int deleteSysUserPaperByIds(String ids); int deleteSysUserPaperById(Long userId); }