wzp
2021-04-06 5e873863bc7324894c89b0a0fc77a6202c91cd64
src/main/java/com/ots/project/exam/mapper/BaseMapper.java
@@ -1,16 +1,9 @@
package com.ots.project.exam.mapper;
public interface BaseMapper<T> {
    int deleteByPrimaryKey(Integer id);
    int insert(T record);
    int insertSelective(T record);
    T selectByPrimaryKey(Integer id);
    int updateByPrimaryKeySelective(T record);
    int updateByPrimaryKey(T record);
}