
com.harium.database.model.BaseDAO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core classes of Harium Database
The newest version!
package com.harium.database.model;
import java.util.List;
public interface BaseDAO {
void init(C connection);
List queryAll();
int create(T model);
int update(T model);
int delete(T model);
Class getKlass();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy