org.babyfish.jimmer.sql.ast.mutation.MutationResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql Show documentation
Show all versions of jimmer-sql Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.ast.mutation;
import org.babyfish.jimmer.meta.ImmutableProp;
import org.babyfish.jimmer.meta.TypedProp;
import java.util.Map;
public interface MutationResult {
int getTotalAffectedRowCount();
Map getAffectedRowCountMap();
int getAffectedRowCount(AffectedTable affectTable);
int getAffectedRowCount(Class> entityType);
int getAffectedRowCount(TypedProp.Association, ?> associationProp);
int getAffectedRowCount(ImmutableProp prop);
}