package pwc.taxtech.atms.entity; import java.util.ArrayList; import java.util.List; public class OrganizationServiceTemplateGroupExample { /** * This field was generated by MyBatis Generator. * This field corresponds to the database table organization_service_template_group * * @mbg.generated */ protected String orderByClause; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table organization_service_template_group * * @mbg.generated */ protected boolean distinct; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table organization_service_template_group * * @mbg.generated */ protected List<Criteria> oredCriteria; /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public OrganizationServiceTemplateGroupExample() { oredCriteria = new ArrayList<Criteria>(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public void setDistinct(boolean distinct) { this.distinct = distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public boolean isDistinct() { return distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public List<Criteria> getOredCriteria() { return oredCriteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @mbg.generated */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table organization_service_template_group * * @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 organization_service_template_group * * @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 organization_service_template_group * * @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 organization_service_template_group * * @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 organization_service_template_group * * @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 andOrganizationIdIsNull() { addCriterion("organization_id is null"); return (Criteria) this; } public Criteria andOrganizationIdIsNotNull() { addCriterion("organization_id is not null"); return (Criteria) this; } public Criteria andOrganizationIdEqualTo(String value) { addCriterion("organization_id =", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotEqualTo(String value) { addCriterion("organization_id <>", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdGreaterThan(String value) { addCriterion("organization_id >", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdGreaterThanOrEqualTo(String value) { addCriterion("organization_id >=", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLessThan(String value) { addCriterion("organization_id <", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLessThanOrEqualTo(String value) { addCriterion("organization_id <=", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdLike(String value) { addCriterion("organization_id like", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotLike(String value) { addCriterion("organization_id not like", value, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdIn(List<String> values) { addCriterion("organization_id in", values, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotIn(List<String> values) { addCriterion("organization_id not in", values, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdBetween(String value1, String value2) { addCriterion("organization_id between", value1, value2, "organizationId"); return (Criteria) this; } public Criteria andOrganizationIdNotBetween(String value1, String value2) { addCriterion("organization_id not between", value1, value2, "organizationId"); return (Criteria) this; } public Criteria andServiceTypeIdIsNull() { addCriterion("service_type_id is null"); return (Criteria) this; } public Criteria andServiceTypeIdIsNotNull() { addCriterion("service_type_id is not null"); return (Criteria) this; } public Criteria andServiceTypeIdEqualTo(String value) { addCriterion("service_type_id =", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdNotEqualTo(String value) { addCriterion("service_type_id <>", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdGreaterThan(String value) { addCriterion("service_type_id >", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdGreaterThanOrEqualTo(String value) { addCriterion("service_type_id >=", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdLessThan(String value) { addCriterion("service_type_id <", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdLessThanOrEqualTo(String value) { addCriterion("service_type_id <=", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdLike(String value) { addCriterion("service_type_id like", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdNotLike(String value) { addCriterion("service_type_id not like", value, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdIn(List<String> values) { addCriterion("service_type_id in", values, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdNotIn(List<String> values) { addCriterion("service_type_id not in", values, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdBetween(String value1, String value2) { addCriterion("service_type_id between", value1, value2, "serviceTypeId"); return (Criteria) this; } public Criteria andServiceTypeIdNotBetween(String value1, String value2) { addCriterion("service_type_id not between", value1, value2, "serviceTypeId"); 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; } } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table organization_service_template_group * * @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 organization_service_template_group * * @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); } } }