package pwc.taxtech.atms.entitiy; import java.util.ArrayList; import java.util.Date; import java.util.List; public class TemplateExample { /** * This field was generated by MyBatis Generator. * This field corresponds to the database table template * * @mbg.generated */ protected String orderByClause; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table template * * @mbg.generated */ protected boolean distinct; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table template * * @mbg.generated */ protected List<Criteria> oredCriteria; /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public TemplateExample() { oredCriteria = new ArrayList<Criteria>(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public void setDistinct(boolean distinct) { this.distinct = distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public boolean isDistinct() { return distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public List<Criteria> getOredCriteria() { return oredCriteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public Criteria or() { Criteria criteria = createCriteriaInternal(); oredCriteria.add(criteria); return criteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public Criteria createCriteria() { Criteria criteria = createCriteriaInternal(); if (oredCriteria.size() == 0) { oredCriteria.add(criteria); } return criteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ protected Criteria createCriteriaInternal() { Criteria criteria = new Criteria(); return criteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table template * * @mbg.generated */ public void clear() { oredCriteria.clear(); orderByClause = null; distinct = false; } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table template * * @mbg.generated */ protected abstract static class GeneratedCriteria { protected List<Criterion> criteria; protected GeneratedCriteria() { super(); criteria = new ArrayList<Criterion>(); } public boolean isValid() { return criteria.size() > 0; } public List<Criterion> getAllCriteria() { return criteria; } public List<Criterion> 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 andIdIsNull() { addCriterion("id is null"); return (Criteria) this; } public Criteria andIdIsNotNull() { addCriterion("id is not null"); return (Criteria) this; } public Criteria andIdEqualTo(Long value) { addCriterion("id =", value, "id"); return (Criteria) this; } public Criteria andIdNotEqualTo(Long value) { addCriterion("id <>", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThan(Long value) { addCriterion("id >", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThanOrEqualTo(Long value) { addCriterion("id >=", value, "id"); return (Criteria) this; } public Criteria andIdLessThan(Long value) { addCriterion("id <", value, "id"); return (Criteria) this; } public Criteria andIdLessThanOrEqualTo(Long value) { addCriterion("id <=", value, "id"); return (Criteria) this; } public Criteria andIdIn(List<Long> values) { addCriterion("id in", values, "id"); return (Criteria) this; } public Criteria andIdNotIn(List<Long> values) { addCriterion("id not in", values, "id"); return (Criteria) this; } public Criteria andIdBetween(Long value1, Long value2) { addCriterion("id between", value1, value2, "id"); return (Criteria) this; } public Criteria andIdNotBetween(Long value1, Long value2) { addCriterion("id not between", value1, value2, "id"); return (Criteria) this; } public Criteria andNameIsNull() { addCriterion("name is null"); return (Criteria) this; } public Criteria andNameIsNotNull() { addCriterion("name is not null"); return (Criteria) this; } public Criteria andNameEqualTo(String value) { addCriterion("name =", value, "name"); return (Criteria) this; } public Criteria andNameNotEqualTo(String value) { addCriterion("name <>", value, "name"); return (Criteria) this; } public Criteria andNameGreaterThan(String value) { addCriterion("name >", value, "name"); return (Criteria) this; } public Criteria andNameGreaterThanOrEqualTo(String value) { addCriterion("name >=", value, "name"); return (Criteria) this; } public Criteria andNameLessThan(String value) { addCriterion("name <", value, "name"); return (Criteria) this; } public Criteria andNameLessThanOrEqualTo(String value) { addCriterion("name <=", value, "name"); return (Criteria) this; } public Criteria andNameLike(String value) { addCriterion("name like", value, "name"); return (Criteria) this; } public Criteria andNameNotLike(String value) { addCriterion("name not like", value, "name"); return (Criteria) this; } public Criteria andNameIn(List<String> values) { addCriterion("name in", values, "name"); return (Criteria) this; } public Criteria andNameNotIn(List<String> values) { addCriterion("name not in", values, "name"); return (Criteria) this; } public Criteria andNameBetween(String value1, String value2) { addCriterion("name between", value1, value2, "name"); return (Criteria) this; } public Criteria andNameNotBetween(String value1, String value2) { addCriterion("name not between", value1, value2, "name"); return (Criteria) this; } public Criteria andCodeIsNull() { addCriterion("code is null"); return (Criteria) this; } public Criteria andCodeIsNotNull() { addCriterion("code is not null"); return (Criteria) this; } public Criteria andCodeEqualTo(String value) { addCriterion("code =", value, "code"); return (Criteria) this; } public Criteria andCodeNotEqualTo(String value) { addCriterion("code <>", value, "code"); return (Criteria) this; } public Criteria andCodeGreaterThan(String value) { addCriterion("code >", value, "code"); return (Criteria) this; } public Criteria andCodeGreaterThanOrEqualTo(String value) { addCriterion("code >=", value, "code"); return (Criteria) this; } public Criteria andCodeLessThan(String value) { addCriterion("code <", value, "code"); return (Criteria) this; } public Criteria andCodeLessThanOrEqualTo(String value) { addCriterion("code <=", value, "code"); return (Criteria) this; } public Criteria andCodeLike(String value) { addCriterion("code like", value, "code"); return (Criteria) this; } public Criteria andCodeNotLike(String value) { addCriterion("code not like", value, "code"); return (Criteria) this; } public Criteria andCodeIn(List<String> values) { addCriterion("code in", values, "code"); return (Criteria) this; } public Criteria andCodeNotIn(List<String> values) { addCriterion("code not in", values, "code"); return (Criteria) this; } public Criteria andCodeBetween(String value1, String value2) { addCriterion("code between", value1, value2, "code"); return (Criteria) this; } public Criteria andCodeNotBetween(String value1, String value2) { addCriterion("code not between", value1, value2, "code"); return (Criteria) this; } public Criteria andPathIsNull() { addCriterion("path is null"); return (Criteria) this; } public Criteria andPathIsNotNull() { addCriterion("path is not null"); return (Criteria) this; } public Criteria andPathEqualTo(String value) { addCriterion("path =", value, "path"); return (Criteria) this; } public Criteria andPathNotEqualTo(String value) { addCriterion("path <>", value, "path"); return (Criteria) this; } public Criteria andPathGreaterThan(String value) { addCriterion("path >", value, "path"); return (Criteria) this; } public Criteria andPathGreaterThanOrEqualTo(String value) { addCriterion("path >=", value, "path"); return (Criteria) this; } public Criteria andPathLessThan(String value) { addCriterion("path <", value, "path"); return (Criteria) this; } public Criteria andPathLessThanOrEqualTo(String value) { addCriterion("path <=", value, "path"); return (Criteria) this; } public Criteria andPathLike(String value) { addCriterion("path like", value, "path"); return (Criteria) this; } public Criteria andPathNotLike(String value) { addCriterion("path not like", value, "path"); return (Criteria) this; } public Criteria andPathIn(List<String> values) { addCriterion("path in", values, "path"); return (Criteria) this; } public Criteria andPathNotIn(List<String> values) { addCriterion("path not in", values, "path"); return (Criteria) this; } public Criteria andPathBetween(String value1, String value2) { addCriterion("path between", value1, value2, "path"); return (Criteria) this; } public Criteria andPathNotBetween(String value1, String value2) { addCriterion("path not between", value1, value2, "path"); return (Criteria) this; } public Criteria andReportTypeIsNull() { addCriterion("report_type is null"); return (Criteria) this; } public Criteria andReportTypeIsNotNull() { addCriterion("report_type is not null"); return (Criteria) this; } public Criteria andReportTypeEqualTo(Integer value) { addCriterion("report_type =", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeNotEqualTo(Integer value) { addCriterion("report_type <>", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeGreaterThan(Integer value) { addCriterion("report_type >", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeGreaterThanOrEqualTo(Integer value) { addCriterion("report_type >=", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeLessThan(Integer value) { addCriterion("report_type <", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeLessThanOrEqualTo(Integer value) { addCriterion("report_type <=", value, "reportType"); return (Criteria) this; } public Criteria andReportTypeIn(List<Integer> values) { addCriterion("report_type in", values, "reportType"); return (Criteria) this; } public Criteria andReportTypeNotIn(List<Integer> values) { addCriterion("report_type not in", values, "reportType"); return (Criteria) this; } public Criteria andReportTypeBetween(Integer value1, Integer value2) { addCriterion("report_type between", value1, value2, "reportType"); return (Criteria) this; } public Criteria andReportTypeNotBetween(Integer value1, Integer value2) { addCriterion("report_type not between", value1, value2, "reportType"); return (Criteria) this; } public Criteria andTemplateGroupIdIsNull() { addCriterion("template_group_id is null"); return (Criteria) this; } public Criteria andTemplateGroupIdIsNotNull() { addCriterion("template_group_id is not null"); return (Criteria) this; } public Criteria andTemplateGroupIdEqualTo(Long value) { addCriterion("template_group_id =", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdNotEqualTo(Long value) { addCriterion("template_group_id <>", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdGreaterThan(Long value) { addCriterion("template_group_id >", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdGreaterThanOrEqualTo(Long value) { addCriterion("template_group_id >=", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdLessThan(Long value) { addCriterion("template_group_id <", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdLessThanOrEqualTo(Long value) { addCriterion("template_group_id <=", value, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdIn(List<Long> values) { addCriterion("template_group_id in", values, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdNotIn(List<Long> values) { addCriterion("template_group_id not in", values, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdBetween(Long value1, Long value2) { addCriterion("template_group_id between", value1, value2, "templateGroupId"); return (Criteria) this; } public Criteria andTemplateGroupIdNotBetween(Long value1, Long value2) { addCriterion("template_group_id not between", value1, value2, "templateGroupId"); return (Criteria) this; } public Criteria andOrderIndexIsNull() { addCriterion("order_index is null"); return (Criteria) this; } public Criteria andOrderIndexIsNotNull() { addCriterion("order_index is not null"); return (Criteria) this; } public Criteria andOrderIndexEqualTo(Integer value) { addCriterion("order_index =", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexNotEqualTo(Integer value) { addCriterion("order_index <>", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexGreaterThan(Integer value) { addCriterion("order_index >", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexGreaterThanOrEqualTo(Integer value) { addCriterion("order_index >=", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexLessThan(Integer value) { addCriterion("order_index <", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexLessThanOrEqualTo(Integer value) { addCriterion("order_index <=", value, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexIn(List<Integer> values) { addCriterion("order_index in", values, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexNotIn(List<Integer> values) { addCriterion("order_index not in", values, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexBetween(Integer value1, Integer value2) { addCriterion("order_index between", value1, value2, "orderIndex"); return (Criteria) this; } public Criteria andOrderIndexNotBetween(Integer value1, Integer value2) { addCriterion("order_index not between", value1, value2, "orderIndex"); 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<Date> values) { addCriterion("create_time in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotIn(List<Date> 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 andUpdateTimeIsNull() { addCriterion("update_time is null"); return (Criteria) this; } public Criteria andUpdateTimeIsNotNull() { addCriterion("update_time is not null"); return (Criteria) this; } public Criteria andUpdateTimeEqualTo(Date value) { addCriterion("update_time =", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotEqualTo(Date value) { addCriterion("update_time <>", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThan(Date value) { addCriterion("update_time >", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { addCriterion("update_time >=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThan(Date value) { addCriterion("update_time <", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { addCriterion("update_time <=", value, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeIn(List<Date> values) { addCriterion("update_time in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotIn(List<Date> values) { addCriterion("update_time not in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeBetween(Date value1, Date value2) { addCriterion("update_time between", value1, value2, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { addCriterion("update_time not between", value1, value2, "updateTime"); return (Criteria) this; } public Criteria andIsSystemTypeIsNull() { addCriterion("is_system_type is null"); return (Criteria) this; } public Criteria andIsSystemTypeIsNotNull() { addCriterion("is_system_type is not null"); return (Criteria) this; } public Criteria andIsSystemTypeEqualTo(Boolean value) { addCriterion("is_system_type =", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeNotEqualTo(Boolean value) { addCriterion("is_system_type <>", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeGreaterThan(Boolean value) { addCriterion("is_system_type >", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeGreaterThanOrEqualTo(Boolean value) { addCriterion("is_system_type >=", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeLessThan(Boolean value) { addCriterion("is_system_type <", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeLessThanOrEqualTo(Boolean value) { addCriterion("is_system_type <=", value, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeIn(List<Boolean> values) { addCriterion("is_system_type in", values, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeNotIn(List<Boolean> values) { addCriterion("is_system_type not in", values, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeBetween(Boolean value1, Boolean value2) { addCriterion("is_system_type between", value1, value2, "isSystemType"); return (Criteria) this; } public Criteria andIsSystemTypeNotBetween(Boolean value1, Boolean value2) { addCriterion("is_system_type not between", value1, value2, "isSystemType"); return (Criteria) this; } public Criteria andIsActiveAssociationIsNull() { addCriterion("is_active_association is null"); return (Criteria) this; } public Criteria andIsActiveAssociationIsNotNull() { addCriterion("is_active_association is not null"); return (Criteria) this; } public Criteria andIsActiveAssociationEqualTo(Boolean value) { addCriterion("is_active_association =", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationNotEqualTo(Boolean value) { addCriterion("is_active_association <>", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationGreaterThan(Boolean value) { addCriterion("is_active_association >", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationGreaterThanOrEqualTo(Boolean value) { addCriterion("is_active_association >=", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationLessThan(Boolean value) { addCriterion("is_active_association <", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationLessThanOrEqualTo(Boolean value) { addCriterion("is_active_association <=", value, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationIn(List<Boolean> values) { addCriterion("is_active_association in", values, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationNotIn(List<Boolean> values) { addCriterion("is_active_association not in", values, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationBetween(Boolean value1, Boolean value2) { addCriterion("is_active_association between", value1, value2, "isActiveAssociation"); return (Criteria) this; } public Criteria andIsActiveAssociationNotBetween(Boolean value1, Boolean value2) { addCriterion("is_active_association not between", value1, value2, "isActiveAssociation"); return (Criteria) this; } public Criteria andParentIdIsNull() { addCriterion("parent_id is null"); return (Criteria) this; } public Criteria andParentIdIsNotNull() { addCriterion("parent_id is not null"); return (Criteria) this; } public Criteria andParentIdEqualTo(String value) { addCriterion("parent_id =", value, "parentId"); return (Criteria) this; } public Criteria andParentIdNotEqualTo(String value) { addCriterion("parent_id <>", value, "parentId"); return (Criteria) this; } public Criteria andParentIdGreaterThan(String value) { addCriterion("parent_id >", value, "parentId"); return (Criteria) this; } public Criteria andParentIdGreaterThanOrEqualTo(String value) { addCriterion("parent_id >=", value, "parentId"); return (Criteria) this; } public Criteria andParentIdLessThan(String value) { addCriterion("parent_id <", value, "parentId"); return (Criteria) this; } public Criteria andParentIdLessThanOrEqualTo(String value) { addCriterion("parent_id <=", value, "parentId"); return (Criteria) this; } public Criteria andParentIdLike(String value) { addCriterion("parent_id like", value, "parentId"); return (Criteria) this; } public Criteria andParentIdNotLike(String value) { addCriterion("parent_id not like", value, "parentId"); return (Criteria) this; } public Criteria andParentIdIn(List<String> values) { addCriterion("parent_id in", values, "parentId"); return (Criteria) this; } public Criteria andParentIdNotIn(List<String> values) { addCriterion("parent_id not in", values, "parentId"); return (Criteria) this; } public Criteria andParentIdBetween(String value1, String value2) { addCriterion("parent_id between", value1, value2, "parentId"); return (Criteria) this; } public Criteria andParentIdNotBetween(String value1, String value2) { addCriterion("parent_id not between", value1, value2, "parentId"); return (Criteria) this; } public Criteria andCreateByIsNull() { addCriterion("create_by is null"); return (Criteria) this; } public Criteria andCreateByIsNotNull() { addCriterion("create_by is not null"); return (Criteria) this; } public Criteria andCreateByEqualTo(String value) { addCriterion("create_by =", value, "createBy"); return (Criteria) this; } public Criteria andCreateByNotEqualTo(String value) { addCriterion("create_by <>", value, "createBy"); return (Criteria) this; } public Criteria andCreateByGreaterThan(String value) { addCriterion("create_by >", value, "createBy"); return (Criteria) this; } public Criteria andCreateByGreaterThanOrEqualTo(String value) { addCriterion("create_by >=", value, "createBy"); return (Criteria) this; } public Criteria andCreateByLessThan(String value) { addCriterion("create_by <", value, "createBy"); return (Criteria) this; } public Criteria andCreateByLessThanOrEqualTo(String value) { addCriterion("create_by <=", value, "createBy"); return (Criteria) this; } public Criteria andCreateByLike(String value) { addCriterion("create_by like", value, "createBy"); return (Criteria) this; } public Criteria andCreateByNotLike(String value) { addCriterion("create_by not like", value, "createBy"); return (Criteria) this; } public Criteria andCreateByIn(List<String> values) { addCriterion("create_by in", values, "createBy"); return (Criteria) this; } public Criteria andCreateByNotIn(List<String> values) { addCriterion("create_by not in", values, "createBy"); return (Criteria) this; } public Criteria andCreateByBetween(String value1, String value2) { addCriterion("create_by between", value1, value2, "createBy"); return (Criteria) this; } public Criteria andCreateByNotBetween(String value1, String value2) { addCriterion("create_by not between", value1, value2, "createBy"); return (Criteria) this; } public Criteria andUpdateByIsNull() { addCriterion("update_by is null"); return (Criteria) this; } public Criteria andUpdateByIsNotNull() { addCriterion("update_by is not null"); return (Criteria) this; } public Criteria andUpdateByEqualTo(String value) { addCriterion("update_by =", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByNotEqualTo(String value) { addCriterion("update_by <>", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByGreaterThan(String value) { addCriterion("update_by >", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByGreaterThanOrEqualTo(String value) { addCriterion("update_by >=", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByLessThan(String value) { addCriterion("update_by <", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByLessThanOrEqualTo(String value) { addCriterion("update_by <=", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByLike(String value) { addCriterion("update_by like", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByNotLike(String value) { addCriterion("update_by not like", value, "updateBy"); return (Criteria) this; } public Criteria andUpdateByIn(List<String> values) { addCriterion("update_by in", values, "updateBy"); return (Criteria) this; } public Criteria andUpdateByNotIn(List<String> values) { addCriterion("update_by not in", values, "updateBy"); return (Criteria) this; } public Criteria andUpdateByBetween(String value1, String value2) { addCriterion("update_by between", value1, value2, "updateBy"); return (Criteria) this; } public Criteria andUpdateByNotBetween(String value1, String value2) { addCriterion("update_by not between", value1, value2, "updateBy"); return (Criteria) this; } } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table template * * @mbg.generated do_not_delete_during_merge */ public static class Criteria extends GeneratedCriteria { protected Criteria() { super(); } } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table template * * @mbg.generated */ 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); } } }