package com.huimv.sj.dataobject; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; public class SjWbhjExample { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ protected String orderByClause; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ protected List oredCriteria; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ protected int start = -1; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ protected int limit = -1; /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public SjWbhjExample() { oredCriteria = new ArrayList(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ protected SjWbhjExample(SjWbhjExample example) { this.orderByClause = example.orderByClause; this.oredCriteria = example.oredCriteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public List getOredCriteria() { return oredCriteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public void clear() { oredCriteria.clear(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public int getStart() { return start; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 CST 2015 */ public int getLimit() { return limit; } /** * This class was generated by Apache iBATIS ibator. * This class corresponds to the database table sj_wbhj * * @ibatorgenerated Tue Nov 10 15:21:26 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 andLqidIsNull() { addCriterion("lqid is null"); return this; } public Criteria andLqidIsNotNull() { addCriterion("lqid is not null"); return this; } public Criteria andLqidEqualTo(Integer value) { addCriterion("lqid =", value, "lqid"); return this; } public Criteria andLqidNotEqualTo(Integer value) { addCriterion("lqid <>", value, "lqid"); return this; } public Criteria andLqidGreaterThan(Integer value) { addCriterion("lqid >", value, "lqid"); return this; } public Criteria andLqidGreaterThanOrEqualTo(Integer value) { addCriterion("lqid >=", value, "lqid"); return this; } public Criteria andLqidLessThan(Integer value) { addCriterion("lqid <", value, "lqid"); return this; } public Criteria andLqidLessThanOrEqualTo(Integer value) { addCriterion("lqid <=", value, "lqid"); return this; } public Criteria andLqidIn(List values) { addCriterion("lqid in", values, "lqid"); return this; } public Criteria andLqidNotIn(List values) { addCriterion("lqid not in", values, "lqid"); return this; } public Criteria andLqidBetween(Integer value1, Integer value2) { addCriterion("lqid between", value1, value2, "lqid"); return this; } public Criteria andLqidNotBetween(Integer value1, Integer value2) { addCriterion("lqid not between", value1, value2, "lqid"); return this; } public Criteria andWbwdIsNull() { addCriterion("wbwd is null"); return this; } public Criteria andWbwdIsNotNull() { addCriterion("wbwd is not null"); return this; } public Criteria andWbwdEqualTo(BigDecimal value) { addCriterion("wbwd =", value, "wbwd"); return this; } public Criteria andWbwdNotEqualTo(BigDecimal value) { addCriterion("wbwd <>", value, "wbwd"); return this; } public Criteria andWbwdGreaterThan(BigDecimal value) { addCriterion("wbwd >", value, "wbwd"); return this; } public Criteria andWbwdGreaterThanOrEqualTo(BigDecimal value) { addCriterion("wbwd >=", value, "wbwd"); return this; } public Criteria andWbwdLessThan(BigDecimal value) { addCriterion("wbwd <", value, "wbwd"); return this; } public Criteria andWbwdLessThanOrEqualTo(BigDecimal value) { addCriterion("wbwd <=", value, "wbwd"); return this; } public Criteria andWbwdIn(List values) { addCriterion("wbwd in", values, "wbwd"); return this; } public Criteria andWbwdNotIn(List values) { addCriterion("wbwd not in", values, "wbwd"); return this; } public Criteria andWbwdBetween(BigDecimal value1, BigDecimal value2) { addCriterion("wbwd between", value1, value2, "wbwd"); return this; } public Criteria andWbwdNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("wbwd not between", value1, value2, "wbwd"); return this; } public Criteria andWbsdIsNull() { addCriterion("wbsd is null"); return this; } public Criteria andWbsdIsNotNull() { addCriterion("wbsd is not null"); return this; } public Criteria andWbsdEqualTo(BigDecimal value) { addCriterion("wbsd =", value, "wbsd"); return this; } public Criteria andWbsdNotEqualTo(BigDecimal value) { addCriterion("wbsd <>", value, "wbsd"); return this; } public Criteria andWbsdGreaterThan(BigDecimal value) { addCriterion("wbsd >", value, "wbsd"); return this; } public Criteria andWbsdGreaterThanOrEqualTo(BigDecimal value) { addCriterion("wbsd >=", value, "wbsd"); return this; } public Criteria andWbsdLessThan(BigDecimal value) { addCriterion("wbsd <", value, "wbsd"); return this; } public Criteria andWbsdLessThanOrEqualTo(BigDecimal value) { addCriterion("wbsd <=", value, "wbsd"); return this; } public Criteria andWbsdIn(List values) { addCriterion("wbsd in", values, "wbsd"); return this; } public Criteria andWbsdNotIn(List values) { addCriterion("wbsd not in", values, "wbsd"); return this; } public Criteria andWbsdBetween(BigDecimal value1, BigDecimal value2) { addCriterion("wbsd between", value1, value2, "wbsd"); return this; } public Criteria andWbsdNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("wbsd not between", value1, value2, "wbsd"); return this; } public Criteria andTemp1IsNull() { addCriterion("temp1 is null"); return this; } public Criteria andTemp1IsNotNull() { addCriterion("temp1 is not null"); return this; } public Criteria andTemp1EqualTo(String value) { addCriterion("temp1 =", value, "temp1"); return this; } public Criteria andTemp1NotEqualTo(String value) { addCriterion("temp1 <>", value, "temp1"); return this; } public Criteria andTemp1GreaterThan(String value) { addCriterion("temp1 >", value, "temp1"); return this; } public Criteria andTemp1GreaterThanOrEqualTo(String value) { addCriterion("temp1 >=", value, "temp1"); return this; } public Criteria andTemp1LessThan(String value) { addCriterion("temp1 <", value, "temp1"); return this; } public Criteria andTemp1LessThanOrEqualTo(String value) { addCriterion("temp1 <=", value, "temp1"); return this; } public Criteria andTemp1Like(String value) { addCriterion("temp1 like", value, "temp1"); return this; } public Criteria andTemp1NotLike(String value) { addCriterion("temp1 not like", value, "temp1"); return this; } public Criteria andTemp1In(List values) { addCriterion("temp1 in", values, "temp1"); return this; } public Criteria andTemp1NotIn(List values) { addCriterion("temp1 not in", values, "temp1"); return this; } public Criteria andTemp1Between(String value1, String value2) { addCriterion("temp1 between", value1, value2, "temp1"); return this; } public Criteria andTemp1NotBetween(String value1, String value2) { addCriterion("temp1 not between", value1, value2, "temp1"); return this; } public Criteria andTemp2IsNull() { addCriterion("temp2 is null"); return this; } public Criteria andTemp2IsNotNull() { addCriterion("temp2 is not null"); return this; } public Criteria andTemp2EqualTo(String value) { addCriterion("temp2 =", value, "temp2"); return this; } public Criteria andTemp2NotEqualTo(String value) { addCriterion("temp2 <>", value, "temp2"); return this; } public Criteria andTemp2GreaterThan(String value) { addCriterion("temp2 >", value, "temp2"); return this; } public Criteria andTemp2GreaterThanOrEqualTo(String value) { addCriterion("temp2 >=", value, "temp2"); return this; } public Criteria andTemp2LessThan(String value) { addCriterion("temp2 <", value, "temp2"); return this; } public Criteria andTemp2LessThanOrEqualTo(String value) { addCriterion("temp2 <=", value, "temp2"); return this; } public Criteria andTemp2Like(String value) { addCriterion("temp2 like", value, "temp2"); return this; } public Criteria andTemp2NotLike(String value) { addCriterion("temp2 not like", value, "temp2"); return this; } public Criteria andTemp2In(List values) { addCriterion("temp2 in", values, "temp2"); return this; } public Criteria andTemp2NotIn(List values) { addCriterion("temp2 not in", values, "temp2"); return this; } public Criteria andTemp2Between(String value1, String value2) { addCriterion("temp2 between", value1, value2, "temp2"); return this; } public Criteria andTemp2NotBetween(String value1, String value2) { addCriterion("temp2 not between", value1, value2, "temp2"); return this; } public Criteria andTemp3IsNull() { addCriterion("temp3 is null"); return this; } public Criteria andTemp3IsNotNull() { addCriterion("temp3 is not null"); return this; } public Criteria andTemp3EqualTo(String value) { addCriterion("temp3 =", value, "temp3"); return this; } public Criteria andTemp3NotEqualTo(String value) { addCriterion("temp3 <>", value, "temp3"); return this; } public Criteria andTemp3GreaterThan(String value) { addCriterion("temp3 >", value, "temp3"); return this; } public Criteria andTemp3GreaterThanOrEqualTo(String value) { addCriterion("temp3 >=", value, "temp3"); return this; } public Criteria andTemp3LessThan(String value) { addCriterion("temp3 <", value, "temp3"); return this; } public Criteria andTemp3LessThanOrEqualTo(String value) { addCriterion("temp3 <=", value, "temp3"); return this; } public Criteria andTemp3Like(String value) { addCriterion("temp3 like", value, "temp3"); return this; } public Criteria andTemp3NotLike(String value) { addCriterion("temp3 not like", value, "temp3"); return this; } public Criteria andTemp3In(List values) { addCriterion("temp3 in", values, "temp3"); return this; } public Criteria andTemp3NotIn(List values) { addCriterion("temp3 not in", values, "temp3"); return this; } public Criteria andTemp3Between(String value1, String value2) { addCriterion("temp3 between", value1, value2, "temp3"); return this; } public Criteria andTemp3NotBetween(String value1, String value2) { addCriterion("temp3 not between", value1, value2, "temp3"); return this; } public Criteria andTemp4IsNull() { addCriterion("temp4 is null"); return this; } public Criteria andTemp4IsNotNull() { addCriterion("temp4 is not null"); return this; } public Criteria andTemp4EqualTo(String value) { addCriterion("temp4 =", value, "temp4"); return this; } public Criteria andTemp4NotEqualTo(String value) { addCriterion("temp4 <>", value, "temp4"); return this; } public Criteria andTemp4GreaterThan(String value) { addCriterion("temp4 >", value, "temp4"); return this; } public Criteria andTemp4GreaterThanOrEqualTo(String value) { addCriterion("temp4 >=", value, "temp4"); return this; } public Criteria andTemp4LessThan(String value) { addCriterion("temp4 <", value, "temp4"); return this; } public Criteria andTemp4LessThanOrEqualTo(String value) { addCriterion("temp4 <=", value, "temp4"); return this; } public Criteria andTemp4Like(String value) { addCriterion("temp4 like", value, "temp4"); return this; } public Criteria andTemp4NotLike(String value) { addCriterion("temp4 not like", value, "temp4"); return this; } public Criteria andTemp4In(List values) { addCriterion("temp4 in", values, "temp4"); return this; } public Criteria andTemp4NotIn(List values) { addCriterion("temp4 not in", values, "temp4"); return this; } public Criteria andTemp4Between(String value1, String value2) { addCriterion("temp4 between", value1, value2, "temp4"); return this; } public Criteria andTemp4NotBetween(String value1, String value2) { addCriterion("temp4 not between", value1, value2, "temp4"); return this; } public Criteria andTemp5IsNull() { addCriterion("temp5 is null"); return this; } public Criteria andTemp5IsNotNull() { addCriterion("temp5 is not null"); return this; } public Criteria andTemp5EqualTo(String value) { addCriterion("temp5 =", value, "temp5"); return this; } public Criteria andTemp5NotEqualTo(String value) { addCriterion("temp5 <>", value, "temp5"); return this; } public Criteria andTemp5GreaterThan(String value) { addCriterion("temp5 >", value, "temp5"); return this; } public Criteria andTemp5GreaterThanOrEqualTo(String value) { addCriterion("temp5 >=", value, "temp5"); return this; } public Criteria andTemp5LessThan(String value) { addCriterion("temp5 <", value, "temp5"); return this; } public Criteria andTemp5LessThanOrEqualTo(String value) { addCriterion("temp5 <=", value, "temp5"); return this; } public Criteria andTemp5Like(String value) { addCriterion("temp5 like", value, "temp5"); return this; } public Criteria andTemp5NotLike(String value) { addCriterion("temp5 not like", value, "temp5"); return this; } public Criteria andTemp5In(List values) { addCriterion("temp5 in", values, "temp5"); return this; } public Criteria andTemp5NotIn(List values) { addCriterion("temp5 not in", values, "temp5"); return this; } public Criteria andTemp5Between(String value1, String value2) { addCriterion("temp5 between", value1, value2, "temp5"); return this; } public Criteria andTemp5NotBetween(String value1, String value2) { addCriterion("temp5 not between", value1, value2, "temp5"); return this; } public Criteria andTemp6IsNull() { addCriterion("temp6 is null"); return this; } public Criteria andTemp6IsNotNull() { addCriterion("temp6 is not null"); return this; } public Criteria andTemp6EqualTo(String value) { addCriterion("temp6 =", value, "temp6"); return this; } public Criteria andTemp6NotEqualTo(String value) { addCriterion("temp6 <>", value, "temp6"); return this; } public Criteria andTemp6GreaterThan(String value) { addCriterion("temp6 >", value, "temp6"); return this; } public Criteria andTemp6GreaterThanOrEqualTo(String value) { addCriterion("temp6 >=", value, "temp6"); return this; } public Criteria andTemp6LessThan(String value) { addCriterion("temp6 <", value, "temp6"); return this; } public Criteria andTemp6LessThanOrEqualTo(String value) { addCriterion("temp6 <=", value, "temp6"); return this; } public Criteria andTemp6Like(String value) { addCriterion("temp6 like", value, "temp6"); return this; } public Criteria andTemp6NotLike(String value) { addCriterion("temp6 not like", value, "temp6"); return this; } public Criteria andTemp6In(List values) { addCriterion("temp6 in", values, "temp6"); return this; } public Criteria andTemp6NotIn(List values) { addCriterion("temp6 not in", values, "temp6"); return this; } public Criteria andTemp6Between(String value1, String value2) { addCriterion("temp6 between", value1, value2, "temp6"); return this; } public Criteria andTemp6NotBetween(String value1, String value2) { addCriterion("temp6 not between", value1, value2, "temp6"); return this; } public Criteria andTemp7IsNull() { addCriterion("temp7 is null"); return this; } public Criteria andTemp7IsNotNull() { addCriterion("temp7 is not null"); return this; } public Criteria andTemp7EqualTo(String value) { addCriterion("temp7 =", value, "temp7"); return this; } public Criteria andTemp7NotEqualTo(String value) { addCriterion("temp7 <>", value, "temp7"); return this; } public Criteria andTemp7GreaterThan(String value) { addCriterion("temp7 >", value, "temp7"); return this; } public Criteria andTemp7GreaterThanOrEqualTo(String value) { addCriterion("temp7 >=", value, "temp7"); return this; } public Criteria andTemp7LessThan(String value) { addCriterion("temp7 <", value, "temp7"); return this; } public Criteria andTemp7LessThanOrEqualTo(String value) { addCriterion("temp7 <=", value, "temp7"); return this; } public Criteria andTemp7Like(String value) { addCriterion("temp7 like", value, "temp7"); return this; } public Criteria andTemp7NotLike(String value) { addCriterion("temp7 not like", value, "temp7"); return this; } public Criteria andTemp7In(List values) { addCriterion("temp7 in", values, "temp7"); return this; } public Criteria andTemp7NotIn(List values) { addCriterion("temp7 not in", values, "temp7"); return this; } public Criteria andTemp7Between(String value1, String value2) { addCriterion("temp7 between", value1, value2, "temp7"); return this; } public Criteria andTemp7NotBetween(String value1, String value2) { addCriterion("temp7 not between", value1, value2, "temp7"); return this; } public Criteria andTemp8IsNull() { addCriterion("temp8 is null"); return this; } public Criteria andTemp8IsNotNull() { addCriterion("temp8 is not null"); return this; } public Criteria andTemp8EqualTo(String value) { addCriterion("temp8 =", value, "temp8"); return this; } public Criteria andTemp8NotEqualTo(String value) { addCriterion("temp8 <>", value, "temp8"); return this; } public Criteria andTemp8GreaterThan(String value) { addCriterion("temp8 >", value, "temp8"); return this; } public Criteria andTemp8GreaterThanOrEqualTo(String value) { addCriterion("temp8 >=", value, "temp8"); return this; } public Criteria andTemp8LessThan(String value) { addCriterion("temp8 <", value, "temp8"); return this; } public Criteria andTemp8LessThanOrEqualTo(String value) { addCriterion("temp8 <=", value, "temp8"); return this; } public Criteria andTemp8Like(String value) { addCriterion("temp8 like", value, "temp8"); return this; } public Criteria andTemp8NotLike(String value) { addCriterion("temp8 not like", value, "temp8"); return this; } public Criteria andTemp8In(List values) { addCriterion("temp8 in", values, "temp8"); return this; } public Criteria andTemp8NotIn(List values) { addCriterion("temp8 not in", values, "temp8"); return this; } public Criteria andTemp8Between(String value1, String value2) { addCriterion("temp8 between", value1, value2, "temp8"); return this; } public Criteria andTemp8NotBetween(String value1, String value2) { addCriterion("temp8 not between", value1, value2, "temp8"); return this; } public Criteria andTemp9IsNull() { addCriterion("temp9 is null"); return this; } public Criteria andTemp9IsNotNull() { addCriterion("temp9 is not null"); return this; } public Criteria andTemp9EqualTo(String value) { addCriterion("temp9 =", value, "temp9"); return this; } public Criteria andTemp9NotEqualTo(String value) { addCriterion("temp9 <>", value, "temp9"); return this; } public Criteria andTemp9GreaterThan(String value) { addCriterion("temp9 >", value, "temp9"); return this; } public Criteria andTemp9GreaterThanOrEqualTo(String value) { addCriterion("temp9 >=", value, "temp9"); return this; } public Criteria andTemp9LessThan(String value) { addCriterion("temp9 <", value, "temp9"); return this; } public Criteria andTemp9LessThanOrEqualTo(String value) { addCriterion("temp9 <=", value, "temp9"); return this; } public Criteria andTemp9Like(String value) { addCriterion("temp9 like", value, "temp9"); return this; } public Criteria andTemp9NotLike(String value) { addCriterion("temp9 not like", value, "temp9"); return this; } public Criteria andTemp9In(List values) { addCriterion("temp9 in", values, "temp9"); return this; } public Criteria andTemp9NotIn(List values) { addCriterion("temp9 not in", values, "temp9"); return this; } public Criteria andTemp9Between(String value1, String value2) { addCriterion("temp9 between", value1, value2, "temp9"); return this; } public Criteria andTemp9NotBetween(String value1, String value2) { addCriterion("temp9 not between", value1, value2, "temp9"); return this; } public Criteria andBzIsNull() { addCriterion("bz is null"); return this; } public Criteria andBzIsNotNull() { addCriterion("bz is not null"); return this; } public Criteria andBzEqualTo(Integer value) { addCriterion("bz =", value, "bz"); return this; } public Criteria andBzNotEqualTo(Integer value) { addCriterion("bz <>", value, "bz"); return this; } public Criteria andBzGreaterThan(Integer value) { addCriterion("bz >", value, "bz"); return this; } public Criteria andBzGreaterThanOrEqualTo(Integer value) { addCriterion("bz >=", value, "bz"); return this; } public Criteria andBzLessThan(Integer value) { addCriterion("bz <", value, "bz"); return this; } public Criteria andBzLessThanOrEqualTo(Integer value) { addCriterion("bz <=", value, "bz"); return this; } public Criteria andBzIn(List values) { addCriterion("bz in", values, "bz"); return this; } public Criteria andBzNotIn(List values) { addCriterion("bz not in", values, "bz"); return this; } public Criteria andBzBetween(Integer value1, Integer value2) { addCriterion("bz between", value1, value2, "bz"); return this; } public Criteria andBzNotBetween(Integer value1, Integer value2) { addCriterion("bz not between", value1, value2, "bz"); return this; } public Criteria andTjsjIsNull() { addCriterion("tjsj is null"); return this; } public Criteria andTjsjIsNotNull() { addCriterion("tjsj is not null"); return this; } public Criteria andTjsjEqualTo(Date value) { addCriterion("tjsj =", value, "tjsj"); return this; } public Criteria andTjsjNotEqualTo(Date value) { addCriterion("tjsj <>", value, "tjsj"); return this; } public Criteria andTjsjGreaterThan(Date value) { addCriterion("tjsj >", value, "tjsj"); return this; } public Criteria andTjsjGreaterThanOrEqualTo(Date value) { addCriterion("tjsj >=", value, "tjsj"); return this; } public Criteria andTjsjLessThan(Date value) { addCriterion("tjsj <", value, "tjsj"); return this; } public Criteria andTjsjLessThanOrEqualTo(Date value) { addCriterion("tjsj <=", value, "tjsj"); return this; } public Criteria andTjsjIn(List values) { addCriterion("tjsj in", values, "tjsj"); return this; } public Criteria andTjsjNotIn(List values) { addCriterion("tjsj not in", values, "tjsj"); return this; } public Criteria andTjsjBetween(Date value1, Date value2) { addCriterion("tjsj between", value1, value2, "tjsj"); return this; } public Criteria andTjsjNotBetween(Date value1, Date value2) { addCriterion("tjsj not between", value1, value2, "tjsj"); return this; } public Criteria andScsjIsNull() { addCriterion("scsj is null"); return this; } public Criteria andScsjIsNotNull() { addCriterion("scsj is not null"); return this; } public Criteria andScsjEqualTo(Date value) { addCriterion("scsj =", value, "scsj"); return this; } public Criteria andScsjNotEqualTo(Date value) { addCriterion("scsj <>", value, "scsj"); return this; } public Criteria andScsjGreaterThan(Date value) { addCriterion("scsj >", value, "scsj"); return this; } public Criteria andScsjGreaterThanOrEqualTo(Date value) { addCriterion("scsj >=", value, "scsj"); return this; } public Criteria andScsjLessThan(Date value) { addCriterion("scsj <", value, "scsj"); return this; } public Criteria andScsjLessThanOrEqualTo(Date value) { addCriterion("scsj <=", value, "scsj"); return this; } public Criteria andScsjIn(List values) { addCriterion("scsj in", values, "scsj"); return this; } public Criteria andScsjNotIn(List values) { addCriterion("scsj not in", values, "scsj"); return this; } public Criteria andScsjBetween(Date value1, Date value2) { addCriterion("scsj between", value1, value2, "scsj"); return this; } public Criteria andScsjNotBetween(Date value1, Date value2) { addCriterion("scsj not between", value1, value2, "scsj"); return this; } } }