admin
2024-04-26 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c
fanli/src/main/java/com/yeshi/fanli/dao/BaseMapper.java
@@ -1,17 +1,17 @@
package com.yeshi.fanli.dao;
public interface BaseMapper<T> {
   int deleteByPrimaryKey(Long id);
   int insert(T record);
   int insertSelective(T record);
   T selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(T record);
   int updateByPrimaryKey(T record);
}
package com.yeshi.fanli.dao;
public interface BaseMapper<T> {
   int deleteByPrimaryKey(Long id);
   int insert(T record);
   int insertSelective(T record);
   T selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(T record);
   int updateByPrimaryKey(T record);
}