jooq 封装类

/**
 * jooqdao基础类
 */
public class JooqDaoImpl, P, T> extends DAOImpl {

    protected JooqDaoImpl(Table table, Class

type, Configuration configuration) { super ( table, type, configuration ); } @Override protected Object getId(Object object) { return null; } public Integer delet() { this.delete (); return null; } }

你可能感兴趣的:(Java)