fix 修复 BaseMapperPlus 方法命令不一致问题

This commit is contained in:
疯狂的狮子Li 2022-08-13 23:53:04 +08:00
parent 0936aaccea
commit 56d209cd20

View File

@ -149,7 +149,7 @@ public interface BaseMapperPlus<M, T, V> extends BaseMapper<T> {
return BeanCopyUtils.copy(obj, voClass);
}
default List<V> selectVoById(Collection<? extends Serializable> idList) {
default List<V> selectVoBatchIds(Collection<? extends Serializable> idList) {
return selectVoBatchIds(idList, this.currentVoClass());
}