package pwc.taxtech.atms.vat.entity; import java.util.ArrayList; import java.util.List; public class VatStandardAccountExample { /** * This field was generated by MyBatis Generator. * This field corresponds to the database table StandardAccount * * @mbg.generated */ protected String orderByClause; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table StandardAccount * * @mbg.generated */ protected boolean distinct; /** * This field was generated by MyBatis Generator. * This field corresponds to the database table StandardAccount * * @mbg.generated */ protected List<Criteria> oredCriteria; /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public VatStandardAccountExample() { oredCriteria = new ArrayList<Criteria>(); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public void setDistinct(boolean distinct) { this.distinct = distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public boolean isDistinct() { return distinct; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public List<Criteria> getOredCriteria() { return oredCriteria; } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @mbg.generated */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by MyBatis Generator. * This method corresponds to the database table StandardAccount * * @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 StandardAccount * * @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 StandardAccount * * @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 StandardAccount * * @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 StandardAccount * * @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(String value) { addCriterion("id =", value, "id"); return (Criteria) this; } public Criteria andIDNotEqualTo(String value) { addCriterion("id <>", value, "id"); return (Criteria) this; } public Criteria andIDGreaterThan(String value) { addCriterion("id >", value, "id"); return (Criteria) this; } public Criteria andIDGreaterThanOrEqualTo(String value) { addCriterion("id >=", value, "id"); return (Criteria) this; } public Criteria andIDLessThan(String value) { addCriterion("id <", value, "id"); return (Criteria) this; } public Criteria andIDLessThanOrEqualTo(String value) { addCriterion("id <=", value, "id"); return (Criteria) this; } public Criteria andIDLike(String value) { addCriterion("id like", value, "id"); return (Criteria) this; } public Criteria andIDNotLike(String value) { addCriterion("id not like", value, "id"); return (Criteria) this; } public Criteria andIDIn(List<String> values) { addCriterion("id in", values, "id"); return (Criteria) this; } public Criteria andIDNotIn(List<String> values) { addCriterion("id not in", values, "id"); return (Criteria) this; } public Criteria andIDBetween(String value1, String value2) { addCriterion("id between", value1, value2, "id"); return (Criteria) this; } public Criteria andIDNotBetween(String value1, String value2) { addCriterion("id not between", value1, value2, "id"); 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 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 andParentCodeIsNull() { addCriterion("ParentCode is null"); return (Criteria) this; } public Criteria andParentCodeIsNotNull() { addCriterion("ParentCode is not null"); return (Criteria) this; } public Criteria andParentCodeEqualTo(String value) { addCriterion("ParentCode =", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeNotEqualTo(String value) { addCriterion("ParentCode <>", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeGreaterThan(String value) { addCriterion("ParentCode >", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeGreaterThanOrEqualTo(String value) { addCriterion("ParentCode >=", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeLessThan(String value) { addCriterion("ParentCode <", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeLessThanOrEqualTo(String value) { addCriterion("ParentCode <=", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeLike(String value) { addCriterion("ParentCode like", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeNotLike(String value) { addCriterion("ParentCode not like", value, "parentCode"); return (Criteria) this; } public Criteria andParentCodeIn(List<String> values) { addCriterion("ParentCode in", values, "parentCode"); return (Criteria) this; } public Criteria andParentCodeNotIn(List<String> values) { addCriterion("ParentCode not in", values, "parentCode"); return (Criteria) this; } public Criteria andParentCodeBetween(String value1, String value2) { addCriterion("ParentCode between", value1, value2, "parentCode"); return (Criteria) this; } public Criteria andParentCodeNotBetween(String value1, String value2) { addCriterion("ParentCode not between", value1, value2, "parentCode"); return (Criteria) this; } public Criteria andFullNameIsNull() { addCriterion("FullName is null"); return (Criteria) this; } public Criteria andFullNameIsNotNull() { addCriterion("FullName is not null"); return (Criteria) this; } public Criteria andFullNameEqualTo(String value) { addCriterion("FullName =", value, "fullName"); return (Criteria) this; } public Criteria andFullNameNotEqualTo(String value) { addCriterion("FullName <>", value, "fullName"); return (Criteria) this; } public Criteria andFullNameGreaterThan(String value) { addCriterion("FullName >", value, "fullName"); return (Criteria) this; } public Criteria andFullNameGreaterThanOrEqualTo(String value) { addCriterion("FullName >=", value, "fullName"); return (Criteria) this; } public Criteria andFullNameLessThan(String value) { addCriterion("FullName <", value, "fullName"); return (Criteria) this; } public Criteria andFullNameLessThanOrEqualTo(String value) { addCriterion("FullName <=", value, "fullName"); return (Criteria) this; } public Criteria andFullNameLike(String value) { addCriterion("FullName like", value, "fullName"); return (Criteria) this; } public Criteria andFullNameNotLike(String value) { addCriterion("FullName not like", value, "fullName"); return (Criteria) this; } public Criteria andFullNameIn(List<String> values) { addCriterion("FullName in", values, "fullName"); return (Criteria) this; } public Criteria andFullNameNotIn(List<String> values) { addCriterion("FullName not in", values, "fullName"); return (Criteria) this; } public Criteria andFullNameBetween(String value1, String value2) { addCriterion("FullName between", value1, value2, "fullName"); return (Criteria) this; } public Criteria andFullNameNotBetween(String value1, String value2) { addCriterion("FullName not between", value1, value2, "fullName"); return (Criteria) this; } public Criteria andAcctPropIsNull() { addCriterion("AcctProp is null"); return (Criteria) this; } public Criteria andAcctPropIsNotNull() { addCriterion("AcctProp is not null"); return (Criteria) this; } public Criteria andAcctPropEqualTo(Integer value) { addCriterion("AcctProp =", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropNotEqualTo(Integer value) { addCriterion("AcctProp <>", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropGreaterThan(Integer value) { addCriterion("AcctProp >", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropGreaterThanOrEqualTo(Integer value) { addCriterion("AcctProp >=", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropLessThan(Integer value) { addCriterion("AcctProp <", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropLessThanOrEqualTo(Integer value) { addCriterion("AcctProp <=", value, "acctProp"); return (Criteria) this; } public Criteria andAcctPropIn(List<Integer> values) { addCriterion("AcctProp in", values, "acctProp"); return (Criteria) this; } public Criteria andAcctPropNotIn(List<Integer> values) { addCriterion("AcctProp not in", values, "acctProp"); return (Criteria) this; } public Criteria andAcctPropBetween(Integer value1, Integer value2) { addCriterion("AcctProp between", value1, value2, "acctProp"); return (Criteria) this; } public Criteria andAcctPropNotBetween(Integer value1, Integer value2) { addCriterion("AcctProp not between", value1, value2, "acctProp"); return (Criteria) this; } public Criteria andSubPropIsNull() { addCriterion("SubProp is null"); return (Criteria) this; } public Criteria andSubPropIsNotNull() { addCriterion("SubProp is not null"); return (Criteria) this; } public Criteria andSubPropEqualTo(Integer value) { addCriterion("SubProp =", value, "subProp"); return (Criteria) this; } public Criteria andSubPropNotEqualTo(Integer value) { addCriterion("SubProp <>", value, "subProp"); return (Criteria) this; } public Criteria andSubPropGreaterThan(Integer value) { addCriterion("SubProp >", value, "subProp"); return (Criteria) this; } public Criteria andSubPropGreaterThanOrEqualTo(Integer value) { addCriterion("SubProp >=", value, "subProp"); return (Criteria) this; } public Criteria andSubPropLessThan(Integer value) { addCriterion("SubProp <", value, "subProp"); return (Criteria) this; } public Criteria andSubPropLessThanOrEqualTo(Integer value) { addCriterion("SubProp <=", value, "subProp"); return (Criteria) this; } public Criteria andSubPropIn(List<Integer> values) { addCriterion("SubProp in", values, "subProp"); return (Criteria) this; } public Criteria andSubPropNotIn(List<Integer> values) { addCriterion("SubProp not in", values, "subProp"); return (Criteria) this; } public Criteria andSubPropBetween(Integer value1, Integer value2) { addCriterion("SubProp between", value1, value2, "subProp"); return (Criteria) this; } public Criteria andSubPropNotBetween(Integer value1, Integer value2) { addCriterion("SubProp not between", value1, value2, "subProp"); return (Criteria) this; } public Criteria andAcctLevelIsNull() { addCriterion("AcctLevel is null"); return (Criteria) this; } public Criteria andAcctLevelIsNotNull() { addCriterion("AcctLevel is not null"); return (Criteria) this; } public Criteria andAcctLevelEqualTo(Integer value) { addCriterion("AcctLevel =", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelNotEqualTo(Integer value) { addCriterion("AcctLevel <>", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelGreaterThan(Integer value) { addCriterion("AcctLevel >", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelGreaterThanOrEqualTo(Integer value) { addCriterion("AcctLevel >=", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelLessThan(Integer value) { addCriterion("AcctLevel <", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelLessThanOrEqualTo(Integer value) { addCriterion("AcctLevel <=", value, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelIn(List<Integer> values) { addCriterion("AcctLevel in", values, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelNotIn(List<Integer> values) { addCriterion("AcctLevel not in", values, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelBetween(Integer value1, Integer value2) { addCriterion("AcctLevel between", value1, value2, "acctLevel"); return (Criteria) this; } public Criteria andAcctLevelNotBetween(Integer value1, Integer value2) { addCriterion("AcctLevel not between", value1, value2, "acctLevel"); return (Criteria) this; } public Criteria andDirectionIsNull() { addCriterion("Direction is null"); return (Criteria) this; } public Criteria andDirectionIsNotNull() { addCriterion("Direction is not null"); return (Criteria) this; } public Criteria andDirectionEqualTo(Integer value) { addCriterion("Direction =", value, "direction"); return (Criteria) this; } public Criteria andDirectionNotEqualTo(Integer value) { addCriterion("Direction <>", value, "direction"); return (Criteria) this; } public Criteria andDirectionGreaterThan(Integer value) { addCriterion("Direction >", value, "direction"); return (Criteria) this; } public Criteria andDirectionGreaterThanOrEqualTo(Integer value) { addCriterion("Direction >=", value, "direction"); return (Criteria) this; } public Criteria andDirectionLessThan(Integer value) { addCriterion("Direction <", value, "direction"); return (Criteria) this; } public Criteria andDirectionLessThanOrEqualTo(Integer value) { addCriterion("Direction <=", value, "direction"); return (Criteria) this; } public Criteria andDirectionIn(List<Integer> values) { addCriterion("Direction in", values, "direction"); return (Criteria) this; } public Criteria andDirectionNotIn(List<Integer> values) { addCriterion("Direction not in", values, "direction"); return (Criteria) this; } public Criteria andDirectionBetween(Integer value1, Integer value2) { addCriterion("Direction between", value1, value2, "direction"); return (Criteria) this; } public Criteria andDirectionNotBetween(Integer value1, Integer value2) { addCriterion("Direction not between", value1, value2, "direction"); return (Criteria) this; } public Criteria andIsLeafIsNull() { addCriterion("IsLeaf is null"); return (Criteria) this; } public Criteria andIsLeafIsNotNull() { addCriterion("IsLeaf is not null"); return (Criteria) this; } public Criteria andIsLeafEqualTo(Boolean value) { addCriterion("IsLeaf =", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafNotEqualTo(Boolean value) { addCriterion("IsLeaf <>", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafGreaterThan(Boolean value) { addCriterion("IsLeaf >", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafGreaterThanOrEqualTo(Boolean value) { addCriterion("IsLeaf >=", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafLessThan(Boolean value) { addCriterion("IsLeaf <", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafLessThanOrEqualTo(Boolean value) { addCriterion("IsLeaf <=", value, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafIn(List<Boolean> values) { addCriterion("IsLeaf in", values, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafNotIn(List<Boolean> values) { addCriterion("IsLeaf not in", values, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafBetween(Boolean value1, Boolean value2) { addCriterion("IsLeaf between", value1, value2, "isLeaf"); return (Criteria) this; } public Criteria andIsLeafNotBetween(Boolean value1, Boolean value2) { addCriterion("IsLeaf not between", value1, value2, "isLeaf"); return (Criteria) this; } public Criteria andRuleTypeIsNull() { addCriterion("RuleType is null"); return (Criteria) this; } public Criteria andRuleTypeIsNotNull() { addCriterion("RuleType is not null"); return (Criteria) this; } public Criteria andRuleTypeEqualTo(Integer value) { addCriterion("RuleType =", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeNotEqualTo(Integer value) { addCriterion("RuleType <>", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeGreaterThan(Integer value) { addCriterion("RuleType >", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeGreaterThanOrEqualTo(Integer value) { addCriterion("RuleType >=", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeLessThan(Integer value) { addCriterion("RuleType <", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeLessThanOrEqualTo(Integer value) { addCriterion("RuleType <=", value, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeIn(List<Integer> values) { addCriterion("RuleType in", values, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeNotIn(List<Integer> values) { addCriterion("RuleType not in", values, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeBetween(Integer value1, Integer value2) { addCriterion("RuleType between", value1, value2, "ruleType"); return (Criteria) this; } public Criteria andRuleTypeNotBetween(Integer value1, Integer value2) { addCriterion("RuleType not between", value1, value2, "ruleType"); return (Criteria) this; } public Criteria andIsActiveIsNull() { addCriterion("IsActive is null"); return (Criteria) this; } public Criteria andIsActiveIsNotNull() { addCriterion("IsActive is not null"); return (Criteria) this; } public Criteria andIsActiveEqualTo(Boolean value) { addCriterion("IsActive =", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveNotEqualTo(Boolean value) { addCriterion("IsActive <>", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveGreaterThan(Boolean value) { addCriterion("IsActive >", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveGreaterThanOrEqualTo(Boolean value) { addCriterion("IsActive >=", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveLessThan(Boolean value) { addCriterion("IsActive <", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveLessThanOrEqualTo(Boolean value) { addCriterion("IsActive <=", value, "isActive"); return (Criteria) this; } public Criteria andIsActiveIn(List<Boolean> values) { addCriterion("IsActive in", values, "isActive"); return (Criteria) this; } public Criteria andIsActiveNotIn(List<Boolean> values) { addCriterion("IsActive not in", values, "isActive"); return (Criteria) this; } public Criteria andIsActiveBetween(Boolean value1, Boolean value2) { addCriterion("IsActive between", value1, value2, "isActive"); return (Criteria) this; } public Criteria andIsActiveNotBetween(Boolean value1, Boolean value2) { addCriterion("IsActive not between", value1, value2, "isActive"); return (Criteria) this; } public Criteria andEnglishNameIsNull() { addCriterion("EnglishName is null"); return (Criteria) this; } public Criteria andEnglishNameIsNotNull() { addCriterion("EnglishName is not null"); return (Criteria) this; } public Criteria andEnglishNameEqualTo(String value) { addCriterion("EnglishName =", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameNotEqualTo(String value) { addCriterion("EnglishName <>", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameGreaterThan(String value) { addCriterion("EnglishName >", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameGreaterThanOrEqualTo(String value) { addCriterion("EnglishName >=", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameLessThan(String value) { addCriterion("EnglishName <", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameLessThanOrEqualTo(String value) { addCriterion("EnglishName <=", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameLike(String value) { addCriterion("EnglishName like", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameNotLike(String value) { addCriterion("EnglishName not like", value, "englishName"); return (Criteria) this; } public Criteria andEnglishNameIn(List<String> values) { addCriterion("EnglishName in", values, "englishName"); return (Criteria) this; } public Criteria andEnglishNameNotIn(List<String> values) { addCriterion("EnglishName not in", values, "englishName"); return (Criteria) this; } public Criteria andEnglishNameBetween(String value1, String value2) { addCriterion("EnglishName between", value1, value2, "englishName"); return (Criteria) this; } public Criteria andEnglishNameNotBetween(String value1, String value2) { addCriterion("EnglishName not between", value1, value2, "englishName"); return (Criteria) this; } public Criteria andIndustryIDIsNull() { addCriterion("IndustryID is null"); return (Criteria) this; } public Criteria andIndustryIDIsNotNull() { addCriterion("IndustryID is not null"); return (Criteria) this; } public Criteria andIndustryIDEqualTo(String value) { addCriterion("IndustryID =", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDNotEqualTo(String value) { addCriterion("IndustryID <>", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDGreaterThan(String value) { addCriterion("IndustryID >", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDGreaterThanOrEqualTo(String value) { addCriterion("IndustryID >=", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDLessThan(String value) { addCriterion("IndustryID <", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDLessThanOrEqualTo(String value) { addCriterion("IndustryID <=", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDLike(String value) { addCriterion("IndustryID like", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDNotLike(String value) { addCriterion("IndustryID not like", value, "industryID"); return (Criteria) this; } public Criteria andIndustryIDIn(List<String> values) { addCriterion("IndustryID in", values, "industryID"); return (Criteria) this; } public Criteria andIndustryIDNotIn(List<String> values) { addCriterion("IndustryID not in", values, "industryID"); return (Criteria) this; } public Criteria andIndustryIDBetween(String value1, String value2) { addCriterion("IndustryID between", value1, value2, "industryID"); return (Criteria) this; } public Criteria andIndustryIDNotBetween(String value1, String value2) { addCriterion("IndustryID not between", value1, value2, "industryID"); return (Criteria) this; } } /** * This class was generated by MyBatis Generator. * This class corresponds to the database table StandardAccount * * @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 StandardAccount * * @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); } } }