com.hframe.domain.model.HfmdEntity_Example Maven / Gradle / Ivy
The newest version!
package com.hframe.domain.model;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
public class HfmdEntity_Example {
protected String orderByClause;
protected boolean distinct;
protected List oredCriteria;
protected Integer limitStart;
protected Integer limitEnd;
public HfmdEntity_Example() {
oredCriteria = new ArrayList();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
public void setLimitStart(Integer limitStart) {
this.limitStart=limitStart;
}
public Integer getLimitStart() {
return limitStart;
}
public void setLimitEnd(Integer limitEnd) {
this.limitEnd=limitEnd;
}
public Integer getLimitEnd() {
return limitEnd;
}
protected abstract static class GeneratedCriteria {
protected List criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List getAllCriteria() {
return criteria;
}
public List getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andHfmdEntityIdIsNull() {
addCriterion("hfmd_entity_id is null");
return (Criteria) this;
}
public Criteria andHfmdEntityIdIsNotNull() {
addCriterion("hfmd_entity_id is not null");
return (Criteria) this;
}
public Criteria andHfmdEntityIdEqualTo(Long value) {
addCriterion("hfmd_entity_id =", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdNotEqualTo(Long value) {
addCriterion("hfmd_entity_id <>", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdGreaterThan(Long value) {
addCriterion("hfmd_entity_id >", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdGreaterThanOrEqualTo(Long value) {
addCriterion("hfmd_entity_id >=", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdLessThan(Long value) {
addCriterion("hfmd_entity_id <", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdLessThanOrEqualTo(Long value) {
addCriterion("hfmd_entity_id <=", value, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdIn(List values) {
addCriterion("hfmd_entity_id in", values, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdNotIn(List values) {
addCriterion("hfmd_entity_id not in", values, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdBetween(Long value1, Long value2) {
addCriterion("hfmd_entity_id between", value1, value2, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityIdNotBetween(Long value1, Long value2) {
addCriterion("hfmd_entity_id not between", value1, value2, "hfmdEntityId");
return (Criteria) this;
}
public Criteria andHfmdEntityNameIsNull() {
addCriterion("hfmd_entity_name is null");
return (Criteria) this;
}
public Criteria andHfmdEntityNameIsNotNull() {
addCriterion("hfmd_entity_name is not null");
return (Criteria) this;
}
public Criteria andHfmdEntityNameEqualTo(String value) {
addCriterion("hfmd_entity_name =", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameNotEqualTo(String value) {
addCriterion("hfmd_entity_name <>", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameGreaterThan(String value) {
addCriterion("hfmd_entity_name >", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameGreaterThanOrEqualTo(String value) {
addCriterion("hfmd_entity_name >=", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameLessThan(String value) {
addCriterion("hfmd_entity_name <", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameLessThanOrEqualTo(String value) {
addCriterion("hfmd_entity_name <=", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameLike(String value) {
addCriterion("hfmd_entity_name like", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameNotLike(String value) {
addCriterion("hfmd_entity_name not like", value, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameIn(List values) {
addCriterion("hfmd_entity_name in", values, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameNotIn(List values) {
addCriterion("hfmd_entity_name not in", values, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameBetween(String value1, String value2) {
addCriterion("hfmd_entity_name between", value1, value2, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityNameNotBetween(String value1, String value2) {
addCriterion("hfmd_entity_name not between", value1, value2, "hfmdEntityName");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeIsNull() {
addCriterion("hfmd_entity_code is null");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeIsNotNull() {
addCriterion("hfmd_entity_code is not null");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeEqualTo(String value) {
addCriterion("hfmd_entity_code =", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeNotEqualTo(String value) {
addCriterion("hfmd_entity_code <>", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeGreaterThan(String value) {
addCriterion("hfmd_entity_code >", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeGreaterThanOrEqualTo(String value) {
addCriterion("hfmd_entity_code >=", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeLessThan(String value) {
addCriterion("hfmd_entity_code <", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeLessThanOrEqualTo(String value) {
addCriterion("hfmd_entity_code <=", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeLike(String value) {
addCriterion("hfmd_entity_code like", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeNotLike(String value) {
addCriterion("hfmd_entity_code not like", value, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeIn(List values) {
addCriterion("hfmd_entity_code in", values, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeNotIn(List values) {
addCriterion("hfmd_entity_code not in", values, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeBetween(String value1, String value2) {
addCriterion("hfmd_entity_code between", value1, value2, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityCodeNotBetween(String value1, String value2) {
addCriterion("hfmd_entity_code not between", value1, value2, "hfmdEntityCode");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeIsNull() {
addCriterion("hfmd_entity_type is null");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeIsNotNull() {
addCriterion("hfmd_entity_type is not null");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeEqualTo(Integer value) {
addCriterion("hfmd_entity_type =", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeNotEqualTo(Integer value) {
addCriterion("hfmd_entity_type <>", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeGreaterThan(Integer value) {
addCriterion("hfmd_entity_type >", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeGreaterThanOrEqualTo(Integer value) {
addCriterion("hfmd_entity_type >=", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeLessThan(Integer value) {
addCriterion("hfmd_entity_type <", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeLessThanOrEqualTo(Integer value) {
addCriterion("hfmd_entity_type <=", value, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeIn(List values) {
addCriterion("hfmd_entity_type in", values, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeNotIn(List values) {
addCriterion("hfmd_entity_type not in", values, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeBetween(Integer value1, Integer value2) {
addCriterion("hfmd_entity_type between", value1, value2, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityTypeNotBetween(Integer value1, Integer value2) {
addCriterion("hfmd_entity_type not between", value1, value2, "hfmdEntityType");
return (Criteria) this;
}
public Criteria andHfmdEntityDescIsNull() {
addCriterion("hfmd_entity_desc is null");
return (Criteria) this;
}
public Criteria andHfmdEntityDescIsNotNull() {
addCriterion("hfmd_entity_desc is not null");
return (Criteria) this;
}
public Criteria andHfmdEntityDescEqualTo(String value) {
addCriterion("hfmd_entity_desc =", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescNotEqualTo(String value) {
addCriterion("hfmd_entity_desc <>", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescGreaterThan(String value) {
addCriterion("hfmd_entity_desc >", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescGreaterThanOrEqualTo(String value) {
addCriterion("hfmd_entity_desc >=", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescLessThan(String value) {
addCriterion("hfmd_entity_desc <", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescLessThanOrEqualTo(String value) {
addCriterion("hfmd_entity_desc <=", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescLike(String value) {
addCriterion("hfmd_entity_desc like", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescNotLike(String value) {
addCriterion("hfmd_entity_desc not like", value, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescIn(List values) {
addCriterion("hfmd_entity_desc in", values, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescNotIn(List values) {
addCriterion("hfmd_entity_desc not in", values, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescBetween(String value1, String value2) {
addCriterion("hfmd_entity_desc between", value1, value2, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfmdEntityDescNotBetween(String value1, String value2) {
addCriterion("hfmd_entity_desc not between", value1, value2, "hfmdEntityDesc");
return (Criteria) this;
}
public Criteria andHfpmProgramIdIsNull() {
addCriterion("hfpm_program_id is null");
return (Criteria) this;
}
public Criteria andHfpmProgramIdIsNotNull() {
addCriterion("hfpm_program_id is not null");
return (Criteria) this;
}
public Criteria andHfpmProgramIdEqualTo(Long value) {
addCriterion("hfpm_program_id =", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdNotEqualTo(Long value) {
addCriterion("hfpm_program_id <>", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdGreaterThan(Long value) {
addCriterion("hfpm_program_id >", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdGreaterThanOrEqualTo(Long value) {
addCriterion("hfpm_program_id >=", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdLessThan(Long value) {
addCriterion("hfpm_program_id <", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdLessThanOrEqualTo(Long value) {
addCriterion("hfpm_program_id <=", value, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdIn(List values) {
addCriterion("hfpm_program_id in", values, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdNotIn(List values) {
addCriterion("hfpm_program_id not in", values, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdBetween(Long value1, Long value2) {
addCriterion("hfpm_program_id between", value1, value2, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmProgramIdNotBetween(Long value1, Long value2) {
addCriterion("hfpm_program_id not between", value1, value2, "hfpmProgramId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdIsNull() {
addCriterion("hfpm_module_id is null");
return (Criteria) this;
}
public Criteria andHfpmModuleIdIsNotNull() {
addCriterion("hfpm_module_id is not null");
return (Criteria) this;
}
public Criteria andHfpmModuleIdEqualTo(Long value) {
addCriterion("hfpm_module_id =", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdNotEqualTo(Long value) {
addCriterion("hfpm_module_id <>", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdGreaterThan(Long value) {
addCriterion("hfpm_module_id >", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdGreaterThanOrEqualTo(Long value) {
addCriterion("hfpm_module_id >=", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdLessThan(Long value) {
addCriterion("hfpm_module_id <", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdLessThanOrEqualTo(Long value) {
addCriterion("hfpm_module_id <=", value, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdIn(List values) {
addCriterion("hfpm_module_id in", values, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdNotIn(List values) {
addCriterion("hfpm_module_id not in", values, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdBetween(Long value1, Long value2) {
addCriterion("hfpm_module_id between", value1, value2, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andHfpmModuleIdNotBetween(Long value1, Long value2) {
addCriterion("hfpm_module_id not between", value1, value2, "hfpmModuleId");
return (Criteria) this;
}
public Criteria andOpIdIsNull() {
addCriterion("op_id is null");
return (Criteria) this;
}
public Criteria andOpIdIsNotNull() {
addCriterion("op_id is not null");
return (Criteria) this;
}
public Criteria andOpIdEqualTo(Long value) {
addCriterion("op_id =", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdNotEqualTo(Long value) {
addCriterion("op_id <>", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdGreaterThan(Long value) {
addCriterion("op_id >", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdGreaterThanOrEqualTo(Long value) {
addCriterion("op_id >=", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdLessThan(Long value) {
addCriterion("op_id <", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdLessThanOrEqualTo(Long value) {
addCriterion("op_id <=", value, "opId");
return (Criteria) this;
}
public Criteria andOpIdIn(List values) {
addCriterion("op_id in", values, "opId");
return (Criteria) this;
}
public Criteria andOpIdNotIn(List values) {
addCriterion("op_id not in", values, "opId");
return (Criteria) this;
}
public Criteria andOpIdBetween(Long value1, Long value2) {
addCriterion("op_id between", value1, value2, "opId");
return (Criteria) this;
}
public Criteria andOpIdNotBetween(Long value1, Long value2) {
addCriterion("op_id not between", value1, value2, "opId");
return (Criteria) this;
}
public Criteria andCreateTimeIsNull() {
addCriterion("create_time is null");
return (Criteria) this;
}
public Criteria andCreateTimeIsNotNull() {
addCriterion("create_time is not null");
return (Criteria) this;
}
public Criteria andCreateTimeEqualTo(Date value) {
addCriterion("create_time =", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotEqualTo(Date value) {
addCriterion("create_time <>", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThan(Date value) {
addCriterion("create_time >", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
addCriterion("create_time >=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThan(Date value) {
addCriterion("create_time <", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
addCriterion("create_time <=", value, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeIn(List values) {
addCriterion("create_time in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotIn(List values) {
addCriterion("create_time not in", values, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeBetween(Date value1, Date value2) {
addCriterion("create_time between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
addCriterion("create_time not between", value1, value2, "createTime");
return (Criteria) this;
}
public Criteria andModifyOpIdIsNull() {
addCriterion("modify_op_id is null");
return (Criteria) this;
}
public Criteria andModifyOpIdIsNotNull() {
addCriterion("modify_op_id is not null");
return (Criteria) this;
}
public Criteria andModifyOpIdEqualTo(Long value) {
addCriterion("modify_op_id =", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdNotEqualTo(Long value) {
addCriterion("modify_op_id <>", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdGreaterThan(Long value) {
addCriterion("modify_op_id >", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdGreaterThanOrEqualTo(Long value) {
addCriterion("modify_op_id >=", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdLessThan(Long value) {
addCriterion("modify_op_id <", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdLessThanOrEqualTo(Long value) {
addCriterion("modify_op_id <=", value, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdIn(List values) {
addCriterion("modify_op_id in", values, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdNotIn(List values) {
addCriterion("modify_op_id not in", values, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdBetween(Long value1, Long value2) {
addCriterion("modify_op_id between", value1, value2, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyOpIdNotBetween(Long value1, Long value2) {
addCriterion("modify_op_id not between", value1, value2, "modifyOpId");
return (Criteria) this;
}
public Criteria andModifyTimeIsNull() {
addCriterion("modify_time is null");
return (Criteria) this;
}
public Criteria andModifyTimeIsNotNull() {
addCriterion("modify_time is not null");
return (Criteria) this;
}
public Criteria andModifyTimeEqualTo(Date value) {
addCriterion("modify_time =", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotEqualTo(Date value) {
addCriterion("modify_time <>", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeGreaterThan(Date value) {
addCriterion("modify_time >", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
addCriterion("modify_time >=", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeLessThan(Date value) {
addCriterion("modify_time <", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
addCriterion("modify_time <=", value, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeIn(List values) {
addCriterion("modify_time in", values, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotIn(List values) {
addCriterion("modify_time not in", values, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeBetween(Date value1, Date value2) {
addCriterion("modify_time between", value1, value2, "modifyTime");
return (Criteria) this;
}
public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
addCriterion("modify_time not between", value1, value2, "modifyTime");
return (Criteria) this;
}
public Criteria andDelFlagIsNull() {
addCriterion("del_flag is null");
return (Criteria) this;
}
public Criteria andDelFlagIsNotNull() {
addCriterion("del_flag is not null");
return (Criteria) this;
}
public Criteria andDelFlagEqualTo(Integer value) {
addCriterion("del_flag =", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagNotEqualTo(Integer value) {
addCriterion("del_flag <>", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagGreaterThan(Integer value) {
addCriterion("del_flag >", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagGreaterThanOrEqualTo(Integer value) {
addCriterion("del_flag >=", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagLessThan(Integer value) {
addCriterion("del_flag <", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagLessThanOrEqualTo(Integer value) {
addCriterion("del_flag <=", value, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagIn(List values) {
addCriterion("del_flag in", values, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagNotIn(List values) {
addCriterion("del_flag not in", values, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagBetween(Integer value1, Integer value2) {
addCriterion("del_flag between", value1, value2, "delFlag");
return (Criteria) this;
}
public Criteria andDelFlagNotBetween(Integer value1, Integer value2) {
addCriterion("del_flag not between", value1, value2, "delFlag");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy