package com.huimv.xt.dataobject; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; public class XtYdjkExample { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected String orderByClause; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected List oredCriteria; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected int start = -1; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected int limit = -1; /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public XtYdjkExample() { oredCriteria = new ArrayList(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected XtYdjkExample(XtYdjkExample example) { this.orderByClause = example.orderByClause; this.oredCriteria = example.oredCriteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public List getOredCriteria() { return oredCriteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public Criteria createCriteria() { Criteria criteria = createCriteriaInternal(); if (oredCriteria.size() == 0) { oredCriteria.add(criteria); } return criteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ protected Criteria createCriteriaInternal() { Criteria criteria = new Criteria(); return criteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public void clear() { oredCriteria.clear(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public void setStart(int start) { this.start=start; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public int getStart() { return start; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public void setLimit(int limit) { this.limit=limit; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public int getLimit() { return limit; } /** * This class was generated by Apache iBATIS ibator. * This class corresponds to the database table xt_ydjk * * @ibatorgenerated Tue Apr 28 16:15:10 CST 2015 */ public static class Criteria { protected List criteriaWithoutValue; protected List> criteriaWithSingleValue; protected List> criteriaWithListValue; protected List> criteriaWithBetweenValue; protected Criteria() { super(); criteriaWithoutValue = new ArrayList(); criteriaWithSingleValue = new ArrayList>(); criteriaWithListValue = new ArrayList>(); criteriaWithBetweenValue = new ArrayList>(); } public boolean isValid() { return criteriaWithoutValue.size() > 0 || criteriaWithSingleValue.size() > 0 || criteriaWithListValue.size() > 0 || criteriaWithBetweenValue.size() > 0; } public List getCriteriaWithoutValue() { return criteriaWithoutValue; } public List> getCriteriaWithSingleValue() { return criteriaWithSingleValue; } public List> getCriteriaWithListValue() { return criteriaWithListValue; } public List> getCriteriaWithBetweenValue() { return criteriaWithBetweenValue; } protected void addCriterion(String condition) { if (condition == null) { throw new RuntimeException("Value for condition cannot be null"); } criteriaWithoutValue.add(condition); } protected void addCriterion(String condition, Object value, String property) { if (value == null) { throw new RuntimeException("Value for " + property + " cannot be null"); } Map map = new HashMap(); map.put("condition", condition); map.put("value", value); criteriaWithSingleValue.add(map); } protected void addCriterion(String condition, List values, String property) { if (values == null || values.size() == 0) { throw new RuntimeException("Value list for " + property + " cannot be null or empty"); } Map map = new HashMap(); map.put("condition", condition); map.put("values", values); criteriaWithListValue.add(map); } 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"); } List list = new ArrayList(); list.add(value1); list.add(value2); Map map = new HashMap(); map.put("condition", condition); map.put("values", list); criteriaWithBetweenValue.add(map); } public Criteria andIdIsNull() { addCriterion("ID is null"); return this; } public Criteria andIdIsNotNull() { addCriterion("ID is not null"); return this; } public Criteria andIdEqualTo(Integer value) { addCriterion("ID =", value, "id"); return this; } public Criteria andIdNotEqualTo(Integer value) { addCriterion("ID <>", value, "id"); return this; } public Criteria andIdGreaterThan(Integer value) { addCriterion("ID >", value, "id"); return this; } public Criteria andIdGreaterThanOrEqualTo(Integer value) { addCriterion("ID >=", value, "id"); return this; } public Criteria andIdLessThan(Integer value) { addCriterion("ID <", value, "id"); return this; } public Criteria andIdLessThanOrEqualTo(Integer value) { addCriterion("ID <=", value, "id"); return this; } public Criteria andIdIn(List values) { addCriterion("ID in", values, "id"); return this; } public Criteria andIdNotIn(List values) { addCriterion("ID not in", values, "id"); return this; } public Criteria andIdBetween(Integer value1, Integer value2) { addCriterion("ID between", value1, value2, "id"); return this; } public Criteria andIdNotBetween(Integer value1, Integer value2) { addCriterion("ID not between", value1, value2, "id"); return this; } public Criteria andMcidIsNull() { addCriterion("MCID is null"); return this; } public Criteria andMcidIsNotNull() { addCriterion("MCID is not null"); return this; } public Criteria andMcidEqualTo(Integer value) { addCriterion("MCID =", value, "mcid"); return this; } public Criteria andMcidNotEqualTo(Integer value) { addCriterion("MCID <>", value, "mcid"); return this; } public Criteria andMcidGreaterThan(Integer value) { addCriterion("MCID >", value, "mcid"); return this; } public Criteria andMcidGreaterThanOrEqualTo(Integer value) { addCriterion("MCID >=", value, "mcid"); return this; } public Criteria andMcidLessThan(Integer value) { addCriterion("MCID <", value, "mcid"); return this; } public Criteria andMcidLessThanOrEqualTo(Integer value) { addCriterion("MCID <=", value, "mcid"); return this; } public Criteria andMcidIn(List values) { addCriterion("MCID in", values, "mcid"); return this; } public Criteria andMcidNotIn(List values) { addCriterion("MCID not in", values, "mcid"); return this; } public Criteria andMcidBetween(Integer value1, Integer value2) { addCriterion("MCID between", value1, value2, "mcid"); return this; } public Criteria andMcidNotBetween(Integer value1, Integer value2) { addCriterion("MCID not between", value1, value2, "mcid"); return this; } public Criteria andSbmcIsNull() { addCriterion("SBMC is null"); return this; } public Criteria andSbmcIsNotNull() { addCriterion("SBMC is not null"); return this; } public Criteria andSbmcEqualTo(String value) { addCriterion("SBMC =", value, "sbmc"); return this; } public Criteria andSbmcNotEqualTo(String value) { addCriterion("SBMC <>", value, "sbmc"); return this; } public Criteria andSbmcGreaterThan(String value) { addCriterion("SBMC >", value, "sbmc"); return this; } public Criteria andSbmcGreaterThanOrEqualTo(String value) { addCriterion("SBMC >=", value, "sbmc"); return this; } public Criteria andSbmcLessThan(String value) { addCriterion("SBMC <", value, "sbmc"); return this; } public Criteria andSbmcLessThanOrEqualTo(String value) { addCriterion("SBMC <=", value, "sbmc"); return this; } public Criteria andSbmcLike(String value) { addCriterion("SBMC like", value, "sbmc"); return this; } public Criteria andSbmcNotLike(String value) { addCriterion("SBMC not like", value, "sbmc"); return this; } public Criteria andSbmcIn(List values) { addCriterion("SBMC in", values, "sbmc"); return this; } public Criteria andSbmcNotIn(List values) { addCriterion("SBMC not in", values, "sbmc"); return this; } public Criteria andSbmcBetween(String value1, String value2) { addCriterion("SBMC between", value1, value2, "sbmc"); return this; } public Criteria andSbmcNotBetween(String value1, String value2) { addCriterion("SBMC not between", value1, value2, "sbmc"); return this; } public Criteria andSbipIsNull() { addCriterion("SBIP is null"); return this; } public Criteria andSbipIsNotNull() { addCriterion("SBIP is not null"); return this; } public Criteria andSbipEqualTo(String value) { addCriterion("SBIP =", value, "sbip"); return this; } public Criteria andSbipNotEqualTo(String value) { addCriterion("SBIP <>", value, "sbip"); return this; } public Criteria andSbipGreaterThan(String value) { addCriterion("SBIP >", value, "sbip"); return this; } public Criteria andSbipGreaterThanOrEqualTo(String value) { addCriterion("SBIP >=", value, "sbip"); return this; } public Criteria andSbipLessThan(String value) { addCriterion("SBIP <", value, "sbip"); return this; } public Criteria andSbipLessThanOrEqualTo(String value) { addCriterion("SBIP <=", value, "sbip"); return this; } public Criteria andSbipLike(String value) { addCriterion("SBIP like", value, "sbip"); return this; } public Criteria andSbipNotLike(String value) { addCriterion("SBIP not like", value, "sbip"); return this; } public Criteria andSbipIn(List values) { addCriterion("SBIP in", values, "sbip"); return this; } public Criteria andSbipNotIn(List values) { addCriterion("SBIP not in", values, "sbip"); return this; } public Criteria andSbipBetween(String value1, String value2) { addCriterion("SBIP between", value1, value2, "sbip"); return this; } public Criteria andSbipNotBetween(String value1, String value2) { addCriterion("SBIP not between", value1, value2, "sbip"); return this; } public Criteria andTd1IsNull() { addCriterion("TD1 is null"); return this; } public Criteria andTd1IsNotNull() { addCriterion("TD1 is not null"); return this; } public Criteria andTd1EqualTo(Integer value) { addCriterion("TD1 =", value, "td1"); return this; } public Criteria andTd1NotEqualTo(Integer value) { addCriterion("TD1 <>", value, "td1"); return this; } public Criteria andTd1GreaterThan(Integer value) { addCriterion("TD1 >", value, "td1"); return this; } public Criteria andTd1GreaterThanOrEqualTo(Integer value) { addCriterion("TD1 >=", value, "td1"); return this; } public Criteria andTd1LessThan(Integer value) { addCriterion("TD1 <", value, "td1"); return this; } public Criteria andTd1LessThanOrEqualTo(Integer value) { addCriterion("TD1 <=", value, "td1"); return this; } public Criteria andTd1In(List values) { addCriterion("TD1 in", values, "td1"); return this; } public Criteria andTd1NotIn(List values) { addCriterion("TD1 not in", values, "td1"); return this; } public Criteria andTd1Between(Integer value1, Integer value2) { addCriterion("TD1 between", value1, value2, "td1"); return this; } public Criteria andTd1NotBetween(Integer value1, Integer value2) { addCriterion("TD1 not between", value1, value2, "td1"); return this; } public Criteria andTd2IsNull() { addCriterion("TD2 is null"); return this; } public Criteria andTd2IsNotNull() { addCriterion("TD2 is not null"); return this; } public Criteria andTd2EqualTo(Integer value) { addCriterion("TD2 =", value, "td2"); return this; } public Criteria andTd2NotEqualTo(Integer value) { addCriterion("TD2 <>", value, "td2"); return this; } public Criteria andTd2GreaterThan(Integer value) { addCriterion("TD2 >", value, "td2"); return this; } public Criteria andTd2GreaterThanOrEqualTo(Integer value) { addCriterion("TD2 >=", value, "td2"); return this; } public Criteria andTd2LessThan(Integer value) { addCriterion("TD2 <", value, "td2"); return this; } public Criteria andTd2LessThanOrEqualTo(Integer value) { addCriterion("TD2 <=", value, "td2"); return this; } public Criteria andTd2In(List values) { addCriterion("TD2 in", values, "td2"); return this; } public Criteria andTd2NotIn(List values) { addCriterion("TD2 not in", values, "td2"); return this; } public Criteria andTd2Between(Integer value1, Integer value2) { addCriterion("TD2 between", value1, value2, "td2"); return this; } public Criteria andTd2NotBetween(Integer value1, Integer value2) { addCriterion("TD2 not between", value1, value2, "td2"); return this; } public Criteria andTd3IsNull() { addCriterion("TD3 is null"); return this; } public Criteria andTd3IsNotNull() { addCriterion("TD3 is not null"); return this; } public Criteria andTd3EqualTo(Integer value) { addCriterion("TD3 =", value, "td3"); return this; } public Criteria andTd3NotEqualTo(Integer value) { addCriterion("TD3 <>", value, "td3"); return this; } public Criteria andTd3GreaterThan(Integer value) { addCriterion("TD3 >", value, "td3"); return this; } public Criteria andTd3GreaterThanOrEqualTo(Integer value) { addCriterion("TD3 >=", value, "td3"); return this; } public Criteria andTd3LessThan(Integer value) { addCriterion("TD3 <", value, "td3"); return this; } public Criteria andTd3LessThanOrEqualTo(Integer value) { addCriterion("TD3 <=", value, "td3"); return this; } public Criteria andTd3In(List values) { addCriterion("TD3 in", values, "td3"); return this; } public Criteria andTd3NotIn(List values) { addCriterion("TD3 not in", values, "td3"); return this; } public Criteria andTd3Between(Integer value1, Integer value2) { addCriterion("TD3 between", value1, value2, "td3"); return this; } public Criteria andTd3NotBetween(Integer value1, Integer value2) { addCriterion("TD3 not between", value1, value2, "td3"); return this; } public Criteria andTd4IsNull() { addCriterion("TD4 is null"); return this; } public Criteria andTd4IsNotNull() { addCriterion("TD4 is not null"); return this; } public Criteria andTd4EqualTo(Integer value) { addCriterion("TD4 =", value, "td4"); return this; } public Criteria andTd4NotEqualTo(Integer value) { addCriterion("TD4 <>", value, "td4"); return this; } public Criteria andTd4GreaterThan(Integer value) { addCriterion("TD4 >", value, "td4"); return this; } public Criteria andTd4GreaterThanOrEqualTo(Integer value) { addCriterion("TD4 >=", value, "td4"); return this; } public Criteria andTd4LessThan(Integer value) { addCriterion("TD4 <", value, "td4"); return this; } public Criteria andTd4LessThanOrEqualTo(Integer value) { addCriterion("TD4 <=", value, "td4"); return this; } public Criteria andTd4In(List values) { addCriterion("TD4 in", values, "td4"); return this; } public Criteria andTd4NotIn(List values) { addCriterion("TD4 not in", values, "td4"); return this; } public Criteria andTd4Between(Integer value1, Integer value2) { addCriterion("TD4 between", value1, value2, "td4"); return this; } public Criteria andTd4NotBetween(Integer value1, Integer value2) { addCriterion("TD4 not between", value1, value2, "td4"); return this; } public Criteria andTd5IsNull() { addCriterion("TD5 is null"); return this; } public Criteria andTd5IsNotNull() { addCriterion("TD5 is not null"); return this; } public Criteria andTd5EqualTo(Integer value) { addCriterion("TD5 =", value, "td5"); return this; } public Criteria andTd5NotEqualTo(Integer value) { addCriterion("TD5 <>", value, "td5"); return this; } public Criteria andTd5GreaterThan(Integer value) { addCriterion("TD5 >", value, "td5"); return this; } public Criteria andTd5GreaterThanOrEqualTo(Integer value) { addCriterion("TD5 >=", value, "td5"); return this; } public Criteria andTd5LessThan(Integer value) { addCriterion("TD5 <", value, "td5"); return this; } public Criteria andTd5LessThanOrEqualTo(Integer value) { addCriterion("TD5 <=", value, "td5"); return this; } public Criteria andTd5In(List values) { addCriterion("TD5 in", values, "td5"); return this; } public Criteria andTd5NotIn(List values) { addCriterion("TD5 not in", values, "td5"); return this; } public Criteria andTd5Between(Integer value1, Integer value2) { addCriterion("TD5 between", value1, value2, "td5"); return this; } public Criteria andTd5NotBetween(Integer value1, Integer value2) { addCriterion("TD5 not between", value1, value2, "td5"); return this; } public Criteria andTd6IsNull() { addCriterion("TD6 is null"); return this; } public Criteria andTd6IsNotNull() { addCriterion("TD6 is not null"); return this; } public Criteria andTd6EqualTo(Integer value) { addCriterion("TD6 =", value, "td6"); return this; } public Criteria andTd6NotEqualTo(Integer value) { addCriterion("TD6 <>", value, "td6"); return this; } public Criteria andTd6GreaterThan(Integer value) { addCriterion("TD6 >", value, "td6"); return this; } public Criteria andTd6GreaterThanOrEqualTo(Integer value) { addCriterion("TD6 >=", value, "td6"); return this; } public Criteria andTd6LessThan(Integer value) { addCriterion("TD6 <", value, "td6"); return this; } public Criteria andTd6LessThanOrEqualTo(Integer value) { addCriterion("TD6 <=", value, "td6"); return this; } public Criteria andTd6In(List values) { addCriterion("TD6 in", values, "td6"); return this; } public Criteria andTd6NotIn(List values) { addCriterion("TD6 not in", values, "td6"); return this; } public Criteria andTd6Between(Integer value1, Integer value2) { addCriterion("TD6 between", value1, value2, "td6"); return this; } public Criteria andTd6NotBetween(Integer value1, Integer value2) { addCriterion("TD6 not between", value1, value2, "td6"); return this; } public Criteria andTd7IsNull() { addCriterion("TD7 is null"); return this; } public Criteria andTd7IsNotNull() { addCriterion("TD7 is not null"); return this; } public Criteria andTd7EqualTo(Integer value) { addCriterion("TD7 =", value, "td7"); return this; } public Criteria andTd7NotEqualTo(Integer value) { addCriterion("TD7 <>", value, "td7"); return this; } public Criteria andTd7GreaterThan(Integer value) { addCriterion("TD7 >", value, "td7"); return this; } public Criteria andTd7GreaterThanOrEqualTo(Integer value) { addCriterion("TD7 >=", value, "td7"); return this; } public Criteria andTd7LessThan(Integer value) { addCriterion("TD7 <", value, "td7"); return this; } public Criteria andTd7LessThanOrEqualTo(Integer value) { addCriterion("TD7 <=", value, "td7"); return this; } public Criteria andTd7In(List values) { addCriterion("TD7 in", values, "td7"); return this; } public Criteria andTd7NotIn(List values) { addCriterion("TD7 not in", values, "td7"); return this; } public Criteria andTd7Between(Integer value1, Integer value2) { addCriterion("TD7 between", value1, value2, "td7"); return this; } public Criteria andTd7NotBetween(Integer value1, Integer value2) { addCriterion("TD7 not between", value1, value2, "td7"); return this; } public Criteria andTd8IsNull() { addCriterion("TD8 is null"); return this; } public Criteria andTd8IsNotNull() { addCriterion("TD8 is not null"); return this; } public Criteria andTd8EqualTo(Integer value) { addCriterion("TD8 =", value, "td8"); return this; } public Criteria andTd8NotEqualTo(Integer value) { addCriterion("TD8 <>", value, "td8"); return this; } public Criteria andTd8GreaterThan(Integer value) { addCriterion("TD8 >", value, "td8"); return this; } public Criteria andTd8GreaterThanOrEqualTo(Integer value) { addCriterion("TD8 >=", value, "td8"); return this; } public Criteria andTd8LessThan(Integer value) { addCriterion("TD8 <", value, "td8"); return this; } public Criteria andTd8LessThanOrEqualTo(Integer value) { addCriterion("TD8 <=", value, "td8"); return this; } public Criteria andTd8In(List values) { addCriterion("TD8 in", values, "td8"); return this; } public Criteria andTd8NotIn(List values) { addCriterion("TD8 not in", values, "td8"); return this; } public Criteria andTd8Between(Integer value1, Integer value2) { addCriterion("TD8 between", value1, value2, "td8"); return this; } public Criteria andTd8NotBetween(Integer value1, Integer value2) { addCriterion("TD8 not between", value1, value2, "td8"); return this; } public Criteria andTd9IsNull() { addCriterion("TD9 is null"); return this; } public Criteria andTd9IsNotNull() { addCriterion("TD9 is not null"); return this; } public Criteria andTd9EqualTo(Integer value) { addCriterion("TD9 =", value, "td9"); return this; } public Criteria andTd9NotEqualTo(Integer value) { addCriterion("TD9 <>", value, "td9"); return this; } public Criteria andTd9GreaterThan(Integer value) { addCriterion("TD9 >", value, "td9"); return this; } public Criteria andTd9GreaterThanOrEqualTo(Integer value) { addCriterion("TD9 >=", value, "td9"); return this; } public Criteria andTd9LessThan(Integer value) { addCriterion("TD9 <", value, "td9"); return this; } public Criteria andTd9LessThanOrEqualTo(Integer value) { addCriterion("TD9 <=", value, "td9"); return this; } public Criteria andTd9In(List values) { addCriterion("TD9 in", values, "td9"); return this; } public Criteria andTd9NotIn(List values) { addCriterion("TD9 not in", values, "td9"); return this; } public Criteria andTd9Between(Integer value1, Integer value2) { addCriterion("TD9 between", value1, value2, "td9"); return this; } public Criteria andTd9NotBetween(Integer value1, Integer value2) { addCriterion("TD9 not between", value1, value2, "td9"); return this; } public Criteria andTd10IsNull() { addCriterion("TD10 is null"); return this; } public Criteria andTd10IsNotNull() { addCriterion("TD10 is not null"); return this; } public Criteria andTd10EqualTo(Integer value) { addCriterion("TD10 =", value, "td10"); return this; } public Criteria andTd10NotEqualTo(Integer value) { addCriterion("TD10 <>", value, "td10"); return this; } public Criteria andTd10GreaterThan(Integer value) { addCriterion("TD10 >", value, "td10"); return this; } public Criteria andTd10GreaterThanOrEqualTo(Integer value) { addCriterion("TD10 >=", value, "td10"); return this; } public Criteria andTd10LessThan(Integer value) { addCriterion("TD10 <", value, "td10"); return this; } public Criteria andTd10LessThanOrEqualTo(Integer value) { addCriterion("TD10 <=", value, "td10"); return this; } public Criteria andTd10In(List values) { addCriterion("TD10 in", values, "td10"); return this; } public Criteria andTd10NotIn(List values) { addCriterion("TD10 not in", values, "td10"); return this; } public Criteria andTd10Between(Integer value1, Integer value2) { addCriterion("TD10 between", value1, value2, "td10"); return this; } public Criteria andTd10NotBetween(Integer value1, Integer value2) { addCriterion("TD10 not between", value1, value2, "td10"); return this; } public Criteria andTd11IsNull() { addCriterion("TD11 is null"); return this; } public Criteria andTd11IsNotNull() { addCriterion("TD11 is not null"); return this; } public Criteria andTd11EqualTo(Integer value) { addCriterion("TD11 =", value, "td11"); return this; } public Criteria andTd11NotEqualTo(Integer value) { addCriterion("TD11 <>", value, "td11"); return this; } public Criteria andTd11GreaterThan(Integer value) { addCriterion("TD11 >", value, "td11"); return this; } public Criteria andTd11GreaterThanOrEqualTo(Integer value) { addCriterion("TD11 >=", value, "td11"); return this; } public Criteria andTd11LessThan(Integer value) { addCriterion("TD11 <", value, "td11"); return this; } public Criteria andTd11LessThanOrEqualTo(Integer value) { addCriterion("TD11 <=", value, "td11"); return this; } public Criteria andTd11In(List values) { addCriterion("TD11 in", values, "td11"); return this; } public Criteria andTd11NotIn(List values) { addCriterion("TD11 not in", values, "td11"); return this; } public Criteria andTd11Between(Integer value1, Integer value2) { addCriterion("TD11 between", value1, value2, "td11"); return this; } public Criteria andTd11NotBetween(Integer value1, Integer value2) { addCriterion("TD11 not between", value1, value2, "td11"); return this; } public Criteria andTd12IsNull() { addCriterion("TD12 is null"); return this; } public Criteria andTd12IsNotNull() { addCriterion("TD12 is not null"); return this; } public Criteria andTd12EqualTo(Integer value) { addCriterion("TD12 =", value, "td12"); return this; } public Criteria andTd12NotEqualTo(Integer value) { addCriterion("TD12 <>", value, "td12"); return this; } public Criteria andTd12GreaterThan(Integer value) { addCriterion("TD12 >", value, "td12"); return this; } public Criteria andTd12GreaterThanOrEqualTo(Integer value) { addCriterion("TD12 >=", value, "td12"); return this; } public Criteria andTd12LessThan(Integer value) { addCriterion("TD12 <", value, "td12"); return this; } public Criteria andTd12LessThanOrEqualTo(Integer value) { addCriterion("TD12 <=", value, "td12"); return this; } public Criteria andTd12In(List values) { addCriterion("TD12 in", values, "td12"); return this; } public Criteria andTd12NotIn(List values) { addCriterion("TD12 not in", values, "td12"); return this; } public Criteria andTd12Between(Integer value1, Integer value2) { addCriterion("TD12 between", value1, value2, "td12"); return this; } public Criteria andTd12NotBetween(Integer value1, Integer value2) { addCriterion("TD12 not between", value1, value2, "td12"); return this; } public Criteria andTd13IsNull() { addCriterion("TD13 is null"); return this; } public Criteria andTd13IsNotNull() { addCriterion("TD13 is not null"); return this; } public Criteria andTd13EqualTo(Integer value) { addCriterion("TD13 =", value, "td13"); return this; } public Criteria andTd13NotEqualTo(Integer value) { addCriterion("TD13 <>", value, "td13"); return this; } public Criteria andTd13GreaterThan(Integer value) { addCriterion("TD13 >", value, "td13"); return this; } public Criteria andTd13GreaterThanOrEqualTo(Integer value) { addCriterion("TD13 >=", value, "td13"); return this; } public Criteria andTd13LessThan(Integer value) { addCriterion("TD13 <", value, "td13"); return this; } public Criteria andTd13LessThanOrEqualTo(Integer value) { addCriterion("TD13 <=", value, "td13"); return this; } public Criteria andTd13In(List values) { addCriterion("TD13 in", values, "td13"); return this; } public Criteria andTd13NotIn(List values) { addCriterion("TD13 not in", values, "td13"); return this; } public Criteria andTd13Between(Integer value1, Integer value2) { addCriterion("TD13 between", value1, value2, "td13"); return this; } public Criteria andTd13NotBetween(Integer value1, Integer value2) { addCriterion("TD13 not between", value1, value2, "td13"); return this; } public Criteria andTd14IsNull() { addCriterion("TD14 is null"); return this; } public Criteria andTd14IsNotNull() { addCriterion("TD14 is not null"); return this; } public Criteria andTd14EqualTo(Integer value) { addCriterion("TD14 =", value, "td14"); return this; } public Criteria andTd14NotEqualTo(Integer value) { addCriterion("TD14 <>", value, "td14"); return this; } public Criteria andTd14GreaterThan(Integer value) { addCriterion("TD14 >", value, "td14"); return this; } public Criteria andTd14GreaterThanOrEqualTo(Integer value) { addCriterion("TD14 >=", value, "td14"); return this; } public Criteria andTd14LessThan(Integer value) { addCriterion("TD14 <", value, "td14"); return this; } public Criteria andTd14LessThanOrEqualTo(Integer value) { addCriterion("TD14 <=", value, "td14"); return this; } public Criteria andTd14In(List values) { addCriterion("TD14 in", values, "td14"); return this; } public Criteria andTd14NotIn(List values) { addCriterion("TD14 not in", values, "td14"); return this; } public Criteria andTd14Between(Integer value1, Integer value2) { addCriterion("TD14 between", value1, value2, "td14"); return this; } public Criteria andTd14NotBetween(Integer value1, Integer value2) { addCriterion("TD14 not between", value1, value2, "td14"); return this; } public Criteria andTd15IsNull() { addCriterion("TD15 is null"); return this; } public Criteria andTd15IsNotNull() { addCriterion("TD15 is not null"); return this; } public Criteria andTd15EqualTo(Integer value) { addCriterion("TD15 =", value, "td15"); return this; } public Criteria andTd15NotEqualTo(Integer value) { addCriterion("TD15 <>", value, "td15"); return this; } public Criteria andTd15GreaterThan(Integer value) { addCriterion("TD15 >", value, "td15"); return this; } public Criteria andTd15GreaterThanOrEqualTo(Integer value) { addCriterion("TD15 >=", value, "td15"); return this; } public Criteria andTd15LessThan(Integer value) { addCriterion("TD15 <", value, "td15"); return this; } public Criteria andTd15LessThanOrEqualTo(Integer value) { addCriterion("TD15 <=", value, "td15"); return this; } public Criteria andTd15In(List values) { addCriterion("TD15 in", values, "td15"); return this; } public Criteria andTd15NotIn(List values) { addCriterion("TD15 not in", values, "td15"); return this; } public Criteria andTd15Between(Integer value1, Integer value2) { addCriterion("TD15 between", value1, value2, "td15"); return this; } public Criteria andTd15NotBetween(Integer value1, Integer value2) { addCriterion("TD15 not between", value1, value2, "td15"); return this; } public Criteria andTd16IsNull() { addCriterion("TD16 is null"); return this; } public Criteria andTd16IsNotNull() { addCriterion("TD16 is not null"); return this; } public Criteria andTd16EqualTo(Integer value) { addCriterion("TD16 =", value, "td16"); return this; } public Criteria andTd16NotEqualTo(Integer value) { addCriterion("TD16 <>", value, "td16"); return this; } public Criteria andTd16GreaterThan(Integer value) { addCriterion("TD16 >", value, "td16"); return this; } public Criteria andTd16GreaterThanOrEqualTo(Integer value) { addCriterion("TD16 >=", value, "td16"); return this; } public Criteria andTd16LessThan(Integer value) { addCriterion("TD16 <", value, "td16"); return this; } public Criteria andTd16LessThanOrEqualTo(Integer value) { addCriterion("TD16 <=", value, "td16"); return this; } public Criteria andTd16In(List values) { addCriterion("TD16 in", values, "td16"); return this; } public Criteria andTd16NotIn(List values) { addCriterion("TD16 not in", values, "td16"); return this; } public Criteria andTd16Between(Integer value1, Integer value2) { addCriterion("TD16 between", value1, value2, "td16"); return this; } public Criteria andTd16NotBetween(Integer value1, Integer value2) { addCriterion("TD16 not between", value1, value2, "td16"); return this; } public Criteria andXgsjIsNull() { addCriterion("XGSJ is null"); return this; } public Criteria andXgsjIsNotNull() { addCriterion("XGSJ is not null"); return this; } public Criteria andXgsjEqualTo(Date value) { addCriterion("XGSJ =", value, "xgsj"); return this; } public Criteria andXgsjNotEqualTo(Date value) { addCriterion("XGSJ <>", value, "xgsj"); return this; } public Criteria andXgsjGreaterThan(Date value) { addCriterion("XGSJ >", value, "xgsj"); return this; } public Criteria andXgsjGreaterThanOrEqualTo(Date value) { addCriterion("XGSJ >=", value, "xgsj"); return this; } public Criteria andXgsjLessThan(Date value) { addCriterion("XGSJ <", value, "xgsj"); return this; } public Criteria andXgsjLessThanOrEqualTo(Date value) { addCriterion("XGSJ <=", value, "xgsj"); return this; } public Criteria andXgsjIn(List values) { addCriterion("XGSJ in", values, "xgsj"); return this; } public Criteria andXgsjNotIn(List values) { addCriterion("XGSJ not in", values, "xgsj"); return this; } public Criteria andXgsjBetween(Date value1, Date value2) { addCriterion("XGSJ between", value1, value2, "xgsj"); return this; } public Criteria andXgsjNotBetween(Date value1, Date value2) { addCriterion("XGSJ not between", value1, value2, "xgsj"); return this; } public Criteria andZfbzIsNull() { addCriterion("ZFBZ is null"); return this; } public Criteria andZfbzIsNotNull() { addCriterion("ZFBZ is not null"); return this; } public Criteria andZfbzEqualTo(Integer value) { addCriterion("ZFBZ =", value, "zfbz"); return this; } public Criteria andZfbzNotEqualTo(Integer value) { addCriterion("ZFBZ <>", value, "zfbz"); return this; } public Criteria andZfbzGreaterThan(Integer value) { addCriterion("ZFBZ >", value, "zfbz"); return this; } public Criteria andZfbzGreaterThanOrEqualTo(Integer value) { addCriterion("ZFBZ >=", value, "zfbz"); return this; } public Criteria andZfbzLessThan(Integer value) { addCriterion("ZFBZ <", value, "zfbz"); return this; } public Criteria andZfbzLessThanOrEqualTo(Integer value) { addCriterion("ZFBZ <=", value, "zfbz"); return this; } public Criteria andZfbzIn(List values) { addCriterion("ZFBZ in", values, "zfbz"); return this; } public Criteria andZfbzNotIn(List values) { addCriterion("ZFBZ not in", values, "zfbz"); return this; } public Criteria andZfbzBetween(Integer value1, Integer value2) { addCriterion("ZFBZ between", value1, value2, "zfbz"); return this; } public Criteria andZfbzNotBetween(Integer value1, Integer value2) { addCriterion("ZFBZ not between", value1, value2, "zfbz"); return this; } } }