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

com.github.jeffreyning.mybatisplus.handler.MppKeyGenerator Maven / Gradle / Ivy

The newest version!
package com.github.jeffreyning.mybatisplus.handler;

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.core.incrementer.IKeyGenerator;
import org.springframework.stereotype.Component;

/**
 * @author ninghao
 */
@Component("mppKeyGenerator")
public class MppKeyGenerator implements IKeyGenerator {
    @Override
    public String executeSql(String incrementerName) {
        return incrementerName;
    }

    //modify 1.6.0
    @Override
    public DbType dbType() {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy