package com.ots.project.exam.mapper; import com.ots.project.exam.domain.TLibraryCode; import java.util.List; public interface TLibraryCodeMapper { public TLibraryCode selectTLibraryCodeById(Long id); public List selectTLibraryCodeList(TLibraryCode tLibraryCode); public int insertTLibraryCode(TLibraryCode tLibraryCode); public int updateTLibraryCode(TLibraryCode tLibraryCode); public int deleteTLibraryCodeById(Long id); public int deleteTLibraryCodeByIds(String[] ids); }