All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baomidou.mybatisplus.extension.incrementer.H2KeyGenerator Maven / Gradle / Ivy

There is a newer version: 3.5.7
Show newest version
package com.baomidou.mybatisplus.extension.incrementer;

import com.baomidou.mybatisplus.core.incrementer.IKeyGenerator;

/**
 * 

* H2 Sequence *

* * @author Caratacus * @since 2017-06-12 */ public class H2KeyGenerator implements IKeyGenerator { @Override public String executeSql(String incrementerName) { return "select " + incrementerName + ".nextval"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy