cn.vonce.sql.service.SqlBeanService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.service;
import cn.vonce.sql.config.SqlBeanDB;
/**
* 通用的业务接口
*
* @param
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2018年5月15日下午3:57:33
*/
public interface SqlBeanService extends SelectService, InsertService, UpdateService, DeleteService {
/**
* 获取Bean类型
*
* @return
*/
Class> getBeanClass();
/**
* 获得数据库相关信息
*
* @return
*/
SqlBeanDB getSqlBeanDB();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy