fun.fengwk.automapper.example.mapper.NewBaseMapper Maven / Gradle / Ivy
package fun.fengwk.automapper.example.mapper;
import java.util.Collection;
import java.util.List;
/**
* @author fengwk
*/
public interface NewBaseMapper {
int insert(DO record);
int insertAll(Collection records);
int deleteById(ID id);
int deleteByIdIn(Collection ids);
int updateById(DO record);
int updateByIdSelective(DO record);
int countById(ID id);
DO findById(ID id);
List findByIdIn(Collection ids);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy