cn.kduck.core.dao.SqlObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kduck-core Show documentation
Show all versions of kduck-core Show documentation
The core of the K-Duck development framework encompasses all the featured components of the framework.
package cn.kduck.core.dao;
import cn.kduck.core.dao.definition.BeanEntityDef;
import cn.kduck.core.dao.definition.BeanFieldDef;
import java.util.List;
/**
* SQL及参数对象,包含要执行的SQL以及对应的参数值对象。
* @author LiuHG
*/
public class SqlObject {
private final String sql;
private final String originalSql;
private final BeanEntityDef entityDef;
private List fieldDefList;
private final List