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 XtFlzbjgzxxExample { /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ protected String orderByClause; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ protected List oredCriteria; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ protected int start = -1; /** * This field was generated by Apache iBATIS ibator. * This field corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ protected int limit = -1; /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public XtFlzbjgzxxExample() { oredCriteria = new ArrayList(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ protected XtFlzbjgzxxExample(XtFlzbjgzxxExample 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_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public void setOrderByClause(String orderByClause) { this.orderByClause = orderByClause; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public String getOrderByClause() { return orderByClause; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public List getOredCriteria() { return oredCriteria; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public void or(Criteria criteria) { oredCriteria.add(criteria); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ 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_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ 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_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public void clear() { oredCriteria.clear(); } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public void setStart(int start) { this.start=start; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public int getStart() { return start; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public void setLimit(int limit) { this.limit=limit; } /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ public int getLimit() { return limit; } /** * This class was generated by Apache iBATIS ibator. * This class corresponds to the database table xt_flzbj_gzxx * * @ibatorgenerated Thu Sep 08 15:24:34 CST 2016 */ 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 andJqidIsNull() { addCriterion("JQID is null"); return this; } public Criteria andJqidIsNotNull() { addCriterion("JQID is not null"); return this; } public Criteria andJqidEqualTo(String value) { addCriterion("JQID =", value, "jqid"); return this; } public Criteria andJqidNotEqualTo(String value) { addCriterion("JQID <>", value, "jqid"); return this; } public Criteria andJqidGreaterThan(String value) { addCriterion("JQID >", value, "jqid"); return this; } public Criteria andJqidGreaterThanOrEqualTo(String value) { addCriterion("JQID >=", value, "jqid"); return this; } public Criteria andJqidLessThan(String value) { addCriterion("JQID <", value, "jqid"); return this; } public Criteria andJqidLessThanOrEqualTo(String value) { addCriterion("JQID <=", value, "jqid"); return this; } public Criteria andJqidLike(String value) { addCriterion("JQID like", value, "jqid"); return this; } public Criteria andJqidNotLike(String value) { addCriterion("JQID not like", value, "jqid"); return this; } public Criteria andJqidIn(List values) { addCriterion("JQID in", values, "jqid"); return this; } public Criteria andJqidNotIn(List values) { addCriterion("JQID not in", values, "jqid"); return this; } public Criteria andJqidBetween(String value1, String value2) { addCriterion("JQID between", value1, value2, "jqid"); return this; } public Criteria andJqidNotBetween(String value1, String value2) { addCriterion("JQID not between", value1, value2, "jqid"); return this; } public Criteria andGzlxIsNull() { addCriterion("GZLX is null"); return this; } public Criteria andGzlxIsNotNull() { addCriterion("GZLX is not null"); return this; } public Criteria andGzlxEqualTo(String value) { addCriterion("GZLX =", value, "gzlx"); return this; } public Criteria andGzlxNotEqualTo(String value) { addCriterion("GZLX <>", value, "gzlx"); return this; } public Criteria andGzlxGreaterThan(String value) { addCriterion("GZLX >", value, "gzlx"); return this; } public Criteria andGzlxGreaterThanOrEqualTo(String value) { addCriterion("GZLX >=", value, "gzlx"); return this; } public Criteria andGzlxLessThan(String value) { addCriterion("GZLX <", value, "gzlx"); return this; } public Criteria andGzlxLessThanOrEqualTo(String value) { addCriterion("GZLX <=", value, "gzlx"); return this; } public Criteria andGzlxLike(String value) { addCriterion("GZLX like", value, "gzlx"); return this; } public Criteria andGzlxNotLike(String value) { addCriterion("GZLX not like", value, "gzlx"); return this; } public Criteria andGzlxIn(List values) { addCriterion("GZLX in", values, "gzlx"); return this; } public Criteria andGzlxNotIn(List values) { addCriterion("GZLX not in", values, "gzlx"); return this; } public Criteria andGzlxBetween(String value1, String value2) { addCriterion("GZLX between", value1, value2, "gzlx"); return this; } public Criteria andGzlxNotBetween(String value1, String value2) { addCriterion("GZLX not between", value1, value2, "gzlx"); return this; } public Criteria andFssjIsNull() { addCriterion("FSSJ is null"); return this; } public Criteria andFssjIsNotNull() { addCriterion("FSSJ is not null"); return this; } public Criteria andFssjEqualTo(Date value) { addCriterion("FSSJ =", value, "fssj"); return this; } public Criteria andFssjNotEqualTo(Date value) { addCriterion("FSSJ <>", value, "fssj"); return this; } public Criteria andFssjGreaterThan(Date value) { addCriterion("FSSJ >", value, "fssj"); return this; } public Criteria andFssjGreaterThanOrEqualTo(Date value) { addCriterion("FSSJ >=", value, "fssj"); return this; } public Criteria andFssjLessThan(Date value) { addCriterion("FSSJ <", value, "fssj"); return this; } public Criteria andFssjLessThanOrEqualTo(Date value) { addCriterion("FSSJ <=", value, "fssj"); return this; } public Criteria andFssjIn(List values) { addCriterion("FSSJ in", values, "fssj"); return this; } public Criteria andFssjNotIn(List values) { addCriterion("FSSJ not in", values, "fssj"); return this; } public Criteria andFssjBetween(Date value1, Date value2) { addCriterion("FSSJ between", value1, value2, "fssj"); return this; } public Criteria andFssjNotBetween(Date value1, Date value2) { addCriterion("FSSJ not between", value1, value2, "fssj"); return this; } public Criteria andJssjIsNull() { addCriterion("JSSJ is null"); return this; } public Criteria andJssjIsNotNull() { addCriterion("JSSJ is not null"); return this; } public Criteria andJssjEqualTo(Date value) { addCriterion("JSSJ =", value, "jssj"); return this; } public Criteria andJssjNotEqualTo(Date value) { addCriterion("JSSJ <>", value, "jssj"); return this; } public Criteria andJssjGreaterThan(Date value) { addCriterion("JSSJ >", value, "jssj"); return this; } public Criteria andJssjGreaterThanOrEqualTo(Date value) { addCriterion("JSSJ >=", value, "jssj"); return this; } public Criteria andJssjLessThan(Date value) { addCriterion("JSSJ <", value, "jssj"); return this; } public Criteria andJssjLessThanOrEqualTo(Date value) { addCriterion("JSSJ <=", value, "jssj"); return this; } public Criteria andJssjIn(List values) { addCriterion("JSSJ in", values, "jssj"); return this; } public Criteria andJssjNotIn(List values) { addCriterion("JSSJ not in", values, "jssj"); return this; } public Criteria andJssjBetween(Date value1, Date value2) { addCriterion("JSSJ between", value1, value2, "jssj"); return this; } public Criteria andJssjNotBetween(Date value1, Date value2) { addCriterion("JSSJ not between", value1, value2, "jssj"); return this; } public Criteria andSblxIsNull() { addCriterion("SBLX is null"); return this; } public Criteria andSblxIsNotNull() { addCriterion("SBLX is not null"); return this; } public Criteria andSblxEqualTo(String value) { addCriterion("SBLX =", value, "sblx"); return this; } public Criteria andSblxNotEqualTo(String value) { addCriterion("SBLX <>", value, "sblx"); return this; } public Criteria andSblxGreaterThan(String value) { addCriterion("SBLX >", value, "sblx"); return this; } public Criteria andSblxGreaterThanOrEqualTo(String value) { addCriterion("SBLX >=", value, "sblx"); return this; } public Criteria andSblxLessThan(String value) { addCriterion("SBLX <", value, "sblx"); return this; } public Criteria andSblxLessThanOrEqualTo(String value) { addCriterion("SBLX <=", value, "sblx"); return this; } public Criteria andSblxLike(String value) { addCriterion("SBLX like", value, "sblx"); return this; } public Criteria andSblxNotLike(String value) { addCriterion("SBLX not like", value, "sblx"); return this; } public Criteria andSblxIn(List values) { addCriterion("SBLX in", values, "sblx"); return this; } public Criteria andSblxNotIn(List values) { addCriterion("SBLX not in", values, "sblx"); return this; } public Criteria andSblxBetween(String value1, String value2) { addCriterion("SBLX between", value1, value2, "sblx"); return this; } public Criteria andSblxNotBetween(String value1, String value2) { addCriterion("SBLX not between", value1, value2, "sblx"); return this; } public Criteria andSbxhIsNull() { addCriterion("SBXH is null"); return this; } public Criteria andSbxhIsNotNull() { addCriterion("SBXH is not null"); return this; } public Criteria andSbxhEqualTo(String value) { addCriterion("SBXH =", value, "sbxh"); return this; } public Criteria andSbxhNotEqualTo(String value) { addCriterion("SBXH <>", value, "sbxh"); return this; } public Criteria andSbxhGreaterThan(String value) { addCriterion("SBXH >", value, "sbxh"); return this; } public Criteria andSbxhGreaterThanOrEqualTo(String value) { addCriterion("SBXH >=", value, "sbxh"); return this; } public Criteria andSbxhLessThan(String value) { addCriterion("SBXH <", value, "sbxh"); return this; } public Criteria andSbxhLessThanOrEqualTo(String value) { addCriterion("SBXH <=", value, "sbxh"); return this; } public Criteria andSbxhLike(String value) { addCriterion("SBXH like", value, "sbxh"); return this; } public Criteria andSbxhNotLike(String value) { addCriterion("SBXH not like", value, "sbxh"); return this; } public Criteria andSbxhIn(List values) { addCriterion("SBXH in", values, "sbxh"); return this; } public Criteria andSbxhNotIn(List values) { addCriterion("SBXH not in", values, "sbxh"); return this; } public Criteria andSbxhBetween(String value1, String value2) { addCriterion("SBXH between", value1, value2, "sbxh"); return this; } public Criteria andSbxhNotBetween(String value1, String value2) { addCriterion("SBXH not between", value1, value2, "sbxh"); return this; } public Criteria andUuidIsNull() { addCriterion("UUID is null"); return this; } public Criteria andUuidIsNotNull() { addCriterion("UUID is not null"); return this; } public Criteria andUuidEqualTo(String value) { addCriterion("UUID =", value, "uuid"); return this; } public Criteria andUuidNotEqualTo(String value) { addCriterion("UUID <>", value, "uuid"); return this; } public Criteria andUuidGreaterThan(String value) { addCriterion("UUID >", value, "uuid"); return this; } public Criteria andUuidGreaterThanOrEqualTo(String value) { addCriterion("UUID >=", value, "uuid"); return this; } public Criteria andUuidLessThan(String value) { addCriterion("UUID <", value, "uuid"); return this; } public Criteria andUuidLessThanOrEqualTo(String value) { addCriterion("UUID <=", value, "uuid"); return this; } public Criteria andUuidLike(String value) { addCriterion("UUID like", value, "uuid"); return this; } public Criteria andUuidNotLike(String value) { addCriterion("UUID not like", value, "uuid"); return this; } public Criteria andUuidIn(List values) { addCriterion("UUID in", values, "uuid"); return this; } public Criteria andUuidNotIn(List values) { addCriterion("UUID not in", values, "uuid"); return this; } public Criteria andUuidBetween(String value1, String value2) { addCriterion("UUID between", value1, value2, "uuid"); return this; } public Criteria andUuidNotBetween(String value1, String value2) { addCriterion("UUID not between", value1, value2, "uuid"); return this; } } }