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

com.dream.template.sequence.AutoIncrementSequence Maven / Gradle / Ivy

package com.dream.template.sequence;

import com.dream.system.config.MappedStatement;
import com.dream.system.table.TableInfo;

public class AutoIncrementSequence implements Sequence {
    @Override
    public boolean isAutoIncrement(TableInfo tableInfo) {
        return true;
    }

    @Override
    public void sequence(TableInfo tableInfo, MappedStatement mappedStatement, Object result) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy