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

io.mybatis.provider.keysql.GenId Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
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