package com.jqmobile.core.android.db.orm.modi; import com.jqmobile.core.orm.ORM; import com.jqmobile.core.utils.plain.ModBean; public interface ModiORM extends ORM<ModBean>{ // // public abstract int insert(ModiBean modiBean) throws ORMException; // // public abstract int update(ModiBean modiBean) throws ORMException; // // public abstract int delete(ModiBean modiBean) throws ORMException; // // public abstract ModiBean find(String tableName, String recid, // String paimaryId) throws ORMException; // // public abstract ModiBean find(String tableName, UUID recid, String paimaryId) // throws ORMException; // // public abstract List<ModiBean> getAll(String tableName) throws ORMException; // // public abstract List<ModiBean> query(String sql, Object... args) // throws ORMException; // // public abstract List<ModiBean> queryPage(String where, long startIndex, // long endIndex, Object... args) throws ORMException; // // public abstract ModiBean queryFirst(String aql, Object... args) // throws ORMException; // // public abstract int queryRow(String sql, Object... args) // throws ORMException; // // public abstract int update(String set, Object... objs) throws ORMException; // // public abstract int delete(String sql, Object... args) // throws ORMException; }