cool.scx.jdbc.sql.UpdateResult Maven / Gradle / Ivy
package cool.scx.jdbc.sql;
import java.util.List;
/**
* 数据库更新结果
*
* @author scx567888
* @version 0.0.1
*/
public record UpdateResult(long affectedItemsCount, List generatedKeys) {
/**
* a
*
* @return a
*/
public Long firstGeneratedKey() {
return this.generatedKeys.size() > 0 ? this.generatedKeys.get(0) : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy