cn.tangjiabao.halodb.core.bean.ColumnCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.bean;
import java.util.List;
import cn.tangjiabao.halodb.core.utils.xml.XmlUtils;
/**
* 字段条件中转实体
* @author [email protected]
* @date 2015-6-14 下午12:43:44
*/
public class ColumnCondition {
private String originalKey;
private String leftBracket="";
private String rightBracket="";
private String andOr="and";
private String fieldName= "";
private String tableAs="t.";
private String columnName="";
private String condition="";// 条件
private Object value;//值
private List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy