
io.mybatis.provider.keysql.GenId Maven / Gradle / Ivy
package io.mybatis.provider.keysql;
import io.mybatis.provider.EntityColumn;
import io.mybatis.provider.EntityTable;
/**
* 通过接口生成主键
*
* @author liuzh
*/
public interface GenId {
T genId(EntityTable table, EntityColumn column);
class NULL implements GenId {
@Override
public Object genId(EntityTable table, EntityColumn column) {
throw new UnsupportedOperationException();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy