|
|
@@ -0,0 +1,2121 @@
|
|
|
+package com.usoftchina.saas.purchase.po;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class PurchaseExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public PurchaseExample() {
|
|
|
+ oredCriteria = new ArrayList<Criteria>();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderByClause(String orderByClause) {
|
|
|
+ this.orderByClause = orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderByClause() {
|
|
|
+ return orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDistinct(boolean distinct) {
|
|
|
+ this.distinct = distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isDistinct() {
|
|
|
+ return distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Criteria> getOredCriteria() {
|
|
|
+ return oredCriteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void or(Criteria criteria) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria or() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria createCriteria() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ if (oredCriteria.size() == 0) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criteria createCriteriaInternal() {
|
|
|
+ Criteria criteria = new Criteria();
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void clear() {
|
|
|
+ oredCriteria.clear();
|
|
|
+ orderByClause = null;
|
|
|
+ distinct = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 andPuIdIsNull() {
|
|
|
+ addCriterion("pu_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdIsNotNull() {
|
|
|
+ addCriterion("pu_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_id =", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_id <>", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("pu_id >", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_id >=", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdLessThan(Integer value) {
|
|
|
+ addCriterion("pu_id <", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_id <=", value, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdIn(List<Integer> values) {
|
|
|
+ addCriterion("pu_id in", values, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("pu_id not in", values, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pu_id between", value1, value2, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pu_id not between", value1, value2, "puId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeIsNull() {
|
|
|
+ addCriterion("pu_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeIsNotNull() {
|
|
|
+ addCriterion("pu_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeEqualTo(String value) {
|
|
|
+ addCriterion("pu_code =", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("pu_code <>", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeGreaterThan(String value) {
|
|
|
+ addCriterion("pu_code >", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_code >=", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeLessThan(String value) {
|
|
|
+ addCriterion("pu_code <", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_code <=", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeLike(String value) {
|
|
|
+ addCriterion("pu_code like", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeNotLike(String value) {
|
|
|
+ addCriterion("pu_code not like", value, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeIn(List<String> values) {
|
|
|
+ addCriterion("pu_code in", values, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("pu_code not in", values, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_code between", value1, value2, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_code not between", value1, value2, "puCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateIsNull() {
|
|
|
+ addCriterion("pu_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateIsNotNull() {
|
|
|
+ addCriterion("pu_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateEqualTo(Date value) {
|
|
|
+ addCriterion("pu_date =", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("pu_date <>", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateGreaterThan(Date value) {
|
|
|
+ addCriterion("pu_date >", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("pu_date >=", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateLessThan(Date value) {
|
|
|
+ addCriterion("pu_date <", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("pu_date <=", value, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateIn(List<Date> values) {
|
|
|
+ addCriterion("pu_date in", values, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("pu_date not in", values, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("pu_date between", value1, value2, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("pu_date not between", value1, value2, "puDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidIsNull() {
|
|
|
+ addCriterion("pu_vendid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidIsNotNull() {
|
|
|
+ addCriterion("pu_vendid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_vendid =", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_vendid <>", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidGreaterThan(Integer value) {
|
|
|
+ addCriterion("pu_vendid >", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_vendid >=", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidLessThan(Integer value) {
|
|
|
+ addCriterion("pu_vendid <", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("pu_vendid <=", value, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidIn(List<Integer> values) {
|
|
|
+ addCriterion("pu_vendid in", values, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("pu_vendid not in", values, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pu_vendid between", value1, value2, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("pu_vendid not between", value1, value2, "puVendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeIsNull() {
|
|
|
+ addCriterion("PU_VENDCODE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeIsNotNull() {
|
|
|
+ addCriterion("PU_VENDCODE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDCODE =", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDCODE <>", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeGreaterThan(String value) {
|
|
|
+ addCriterion("PU_VENDCODE >", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDCODE >=", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeLessThan(String value) {
|
|
|
+ addCriterion("PU_VENDCODE <", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDCODE <=", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeLike(String value) {
|
|
|
+ addCriterion("PU_VENDCODE like", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeNotLike(String value) {
|
|
|
+ addCriterion("PU_VENDCODE not like", value, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeIn(List<String> values) {
|
|
|
+ addCriterion("PU_VENDCODE in", values, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_VENDCODE not in", values, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_VENDCODE between", value1, value2, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_VENDCODE not between", value1, value2, "puVendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameIsNull() {
|
|
|
+ addCriterion("PU_VENDNAME is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameIsNotNull() {
|
|
|
+ addCriterion("PU_VENDNAME is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDNAME =", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDNAME <>", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameGreaterThan(String value) {
|
|
|
+ addCriterion("PU_VENDNAME >", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDNAME >=", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameLessThan(String value) {
|
|
|
+ addCriterion("PU_VENDNAME <", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_VENDNAME <=", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameLike(String value) {
|
|
|
+ addCriterion("PU_VENDNAME like", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameNotLike(String value) {
|
|
|
+ addCriterion("PU_VENDNAME not like", value, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameIn(List<String> values) {
|
|
|
+ addCriterion("PU_VENDNAME in", values, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_VENDNAME not in", values, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_VENDNAME between", value1, value2, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuVendnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_VENDNAME not between", value1, value2, "puVendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridIsNull() {
|
|
|
+ addCriterion("PU_BUYERID is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridIsNotNull() {
|
|
|
+ addCriterion("PU_BUYERID is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridEqualTo(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID =", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridNotEqualTo(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID <>", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridGreaterThan(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID >", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID >=", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridLessThan(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID <", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("PU_BUYERID <=", value, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridIn(List<Integer> values) {
|
|
|
+ addCriterion("PU_BUYERID in", values, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridNotIn(List<Integer> values) {
|
|
|
+ addCriterion("PU_BUYERID not in", values, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("PU_BUYERID between", value1, value2, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyeridNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("PU_BUYERID not between", value1, value2, "puBuyerid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeIsNull() {
|
|
|
+ addCriterion("PU_BUYERCODE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeIsNotNull() {
|
|
|
+ addCriterion("PU_BUYERCODE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE =", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE <>", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeGreaterThan(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE >", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE >=", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeLessThan(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE <", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE <=", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeLike(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE like", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeNotLike(String value) {
|
|
|
+ addCriterion("PU_BUYERCODE not like", value, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeIn(List<String> values) {
|
|
|
+ addCriterion("PU_BUYERCODE in", values, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_BUYERCODE not in", values, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_BUYERCODE between", value1, value2, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyercodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_BUYERCODE not between", value1, value2, "puBuyercode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameIsNull() {
|
|
|
+ addCriterion("PU_BUYERNAME is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameIsNotNull() {
|
|
|
+ addCriterion("PU_BUYERNAME is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME =", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME <>", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameGreaterThan(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME >", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME >=", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameLessThan(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME <", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME <=", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameLike(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME like", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameNotLike(String value) {
|
|
|
+ addCriterion("PU_BUYERNAME not like", value, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameIn(List<String> values) {
|
|
|
+ addCriterion("PU_BUYERNAME in", values, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_BUYERNAME not in", values, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_BUYERNAME between", value1, value2, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuBuyernameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_BUYERNAME not between", value1, value2, "puBuyername");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryIsNull() {
|
|
|
+ addCriterion("PU_DELIVERY is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryIsNotNull() {
|
|
|
+ addCriterion("PU_DELIVERY is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryEqualTo(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY =", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryNotEqualTo(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY <>", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryGreaterThan(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY >", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY >=", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryLessThan(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY <", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("PU_DELIVERY <=", value, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryIn(List<Date> values) {
|
|
|
+ addCriterion("PU_DELIVERY in", values, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryNotIn(List<Date> values) {
|
|
|
+ addCriterion("PU_DELIVERY not in", values, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("PU_DELIVERY between", value1, value2, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuDeliveryNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("PU_DELIVERY not between", value1, value2, "puDelivery");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalIsNull() {
|
|
|
+ addCriterion("PU_TAXTOTAL is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalIsNotNull() {
|
|
|
+ addCriterion("PU_TAXTOTAL is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL =", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalNotEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL <>", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalGreaterThan(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL >", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalGreaterThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL >=", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalLessThan(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL <", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalLessThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TAXTOTAL <=", value, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalIn(List<Double> values) {
|
|
|
+ addCriterion("PU_TAXTOTAL in", values, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalNotIn(List<Double> values) {
|
|
|
+ addCriterion("PU_TAXTOTAL not in", values, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("PU_TAXTOTAL between", value1, value2, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTaxtotalNotBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("PU_TAXTOTAL not between", value1, value2, "puTaxtotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalIsNull() {
|
|
|
+ addCriterion("PU_TOTAL is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalIsNotNull() {
|
|
|
+ addCriterion("PU_TOTAL is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TOTAL =", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalNotEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TOTAL <>", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalGreaterThan(Double value) {
|
|
|
+ addCriterion("PU_TOTAL >", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalGreaterThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TOTAL >=", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalLessThan(Double value) {
|
|
|
+ addCriterion("PU_TOTAL <", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalLessThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("PU_TOTAL <=", value, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalIn(List<Double> values) {
|
|
|
+ addCriterion("PU_TOTAL in", values, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalNotIn(List<Double> values) {
|
|
|
+ addCriterion("PU_TOTAL not in", values, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("PU_TOTAL between", value1, value2, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalNotBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("PU_TOTAL not between", value1, value2, "puTotal");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkIsNull() {
|
|
|
+ addCriterion("PU_REMARK is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkIsNotNull() {
|
|
|
+ addCriterion("PU_REMARK is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkEqualTo(String value) {
|
|
|
+ addCriterion("PU_REMARK =", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_REMARK <>", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkGreaterThan(String value) {
|
|
|
+ addCriterion("PU_REMARK >", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_REMARK >=", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkLessThan(String value) {
|
|
|
+ addCriterion("PU_REMARK <", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_REMARK <=", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkLike(String value) {
|
|
|
+ addCriterion("PU_REMARK like", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkNotLike(String value) {
|
|
|
+ addCriterion("PU_REMARK not like", value, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkIn(List<String> values) {
|
|
|
+ addCriterion("PU_REMARK in", values, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_REMARK not in", values, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_REMARK between", value1, value2, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuRemarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_REMARK not between", value1, value2, "puRemark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperIsNull() {
|
|
|
+ addCriterion("PU_TOTALUPPER is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperIsNotNull() {
|
|
|
+ addCriterion("PU_TOTALUPPER is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperEqualTo(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER =", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER <>", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperGreaterThan(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER >", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER >=", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperLessThan(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER <", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER <=", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperLike(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER like", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperNotLike(String value) {
|
|
|
+ addCriterion("PU_TOTALUPPER not like", value, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperIn(List<String> values) {
|
|
|
+ addCriterion("PU_TOTALUPPER in", values, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_TOTALUPPER not in", values, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_TOTALUPPER between", value1, value2, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuTotalupperNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_TOTALUPPER not between", value1, value2, "puTotalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateIsNull() {
|
|
|
+ addCriterion("PU_INDATE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateIsNotNull() {
|
|
|
+ addCriterion("PU_INDATE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateEqualTo(Date value) {
|
|
|
+ addCriterion("PU_INDATE =", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateNotEqualTo(Date value) {
|
|
|
+ addCriterion("PU_INDATE <>", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateGreaterThan(Date value) {
|
|
|
+ addCriterion("PU_INDATE >", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("PU_INDATE >=", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateLessThan(Date value) {
|
|
|
+ addCriterion("PU_INDATE <", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("PU_INDATE <=", value, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateIn(List<Date> values) {
|
|
|
+ addCriterion("PU_INDATE in", values, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateNotIn(List<Date> values) {
|
|
|
+ addCriterion("PU_INDATE not in", values, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("PU_INDATE between", value1, value2, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuIndateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("PU_INDATE not between", value1, value2, "puIndate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusIsNull() {
|
|
|
+ addCriterion("PU_PRINTSTATUS is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusIsNotNull() {
|
|
|
+ addCriterion("PU_PRINTSTATUS is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS =", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS <>", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusGreaterThan(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS >", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS >=", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusLessThan(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS <", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS <=", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusLike(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS like", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusNotLike(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUS not like", value, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusIn(List<String> values) {
|
|
|
+ addCriterion("PU_PRINTSTATUS in", values, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_PRINTSTATUS not in", values, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_PRINTSTATUS between", value1, value2, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_PRINTSTATUS not between", value1, value2, "puPrintstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeIsNull() {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeIsNotNull() {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE =", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE <>", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE >", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE >=", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeLessThan(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE <", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE <=", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeLike(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE like", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeNotLike(String value) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE not like", value, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeIn(List<String> values) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE in", values, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE not in", values, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE between", value1, value2, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuPrintstatuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_PRINTSTATUSCODE not between", value1, value2, "puPrintstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeIsNull() {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeIsNotNull() {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE =", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE <>", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE >", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE >=", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeLessThan(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE <", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE <=", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeLike(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE like", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeNotLike(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE not like", value, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeIn(List<String> values) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE in", values, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE not in", values, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE between", value1, value2, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUSCODE not between", value1, value2, "puAcceptstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusIsNull() {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusIsNotNull() {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS =", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS <>", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusGreaterThan(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS >", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS >=", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusLessThan(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS <", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS <=", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusLike(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS like", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusNotLike(String value) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS not like", value, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusIn(List<String> values) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS in", values, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS not in", values, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS between", value1, value2, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuAcceptstatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_ACCEPTSTATUS not between", value1, value2, "puAcceptstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeIsNull() {
|
|
|
+ addCriterion("PU_STATUSCODE is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeIsNotNull() {
|
|
|
+ addCriterion("PU_STATUSCODE is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE =", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE <>", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE >", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE >=", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeLessThan(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE <", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE <=", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeLike(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE like", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeNotLike(String value) {
|
|
|
+ addCriterion("PU_STATUSCODE not like", value, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeIn(List<String> values) {
|
|
|
+ addCriterion("PU_STATUSCODE in", values, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_STATUSCODE not in", values, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_STATUSCODE between", value1, value2, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_STATUSCODE not between", value1, value2, "puStatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusIsNull() {
|
|
|
+ addCriterion("PU_STATUS is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusIsNotNull() {
|
|
|
+ addCriterion("PU_STATUS is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUS =", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusNotEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUS <>", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusGreaterThan(String value) {
|
|
|
+ addCriterion("PU_STATUS >", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUS >=", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusLessThan(String value) {
|
|
|
+ addCriterion("PU_STATUS <", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("PU_STATUS <=", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusLike(String value) {
|
|
|
+ addCriterion("PU_STATUS like", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusNotLike(String value) {
|
|
|
+ addCriterion("PU_STATUS not like", value, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusIn(List<String> values) {
|
|
|
+ addCriterion("PU_STATUS in", values, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusNotIn(List<String> values) {
|
|
|
+ addCriterion("PU_STATUS not in", values, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_STATUS between", value1, value2, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuStatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("PU_STATUS not between", value1, value2, "puStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidIsNull() {
|
|
|
+ addCriterion("companyid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidIsNotNull() {
|
|
|
+ addCriterion("companyid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidEqualTo(Integer value) {
|
|
|
+ addCriterion("companyid =", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("companyid <>", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidGreaterThan(Integer value) {
|
|
|
+ addCriterion("companyid >", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("companyid >=", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidLessThan(Integer value) {
|
|
|
+ addCriterion("companyid <", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("companyid <=", value, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidIn(List<Integer> values) {
|
|
|
+ addCriterion("companyid in", values, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("companyid not in", values, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("companyid between", value1, value2, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("companyid not between", value1, value2, "companyid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidIsNull() {
|
|
|
+ addCriterion("updatemanid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidIsNotNull() {
|
|
|
+ addCriterion("updatemanid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidEqualTo(Integer value) {
|
|
|
+ addCriterion("updatemanid =", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("updatemanid <>", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidGreaterThan(Integer value) {
|
|
|
+ addCriterion("updatemanid >", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("updatemanid >=", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidLessThan(Integer value) {
|
|
|
+ addCriterion("updatemanid <", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("updatemanid <=", value, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidIn(List<Integer> values) {
|
|
|
+ addCriterion("updatemanid in", values, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("updatemanid not in", values, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("updatemanid between", value1, value2, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatemanidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("updatemanid not between", value1, value2, "updatemanid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateIsNull() {
|
|
|
+ addCriterion("updatedate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateIsNotNull() {
|
|
|
+ addCriterion("updatedate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateEqualTo(Date value) {
|
|
|
+ addCriterion("updatedate =", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateNotEqualTo(Date value) {
|
|
|
+ addCriterion("updatedate <>", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateGreaterThan(Date value) {
|
|
|
+ addCriterion("updatedate >", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updatedate >=", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateLessThan(Date value) {
|
|
|
+ addCriterion("updatedate <", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updatedate <=", value, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateIn(List<Date> values) {
|
|
|
+ addCriterion("updatedate in", values, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateNotIn(List<Date> values) {
|
|
|
+ addCriterion("updatedate not in", values, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updatedate between", value1, value2, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updatedate not between", value1, value2, "updatedate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1IsNull() {
|
|
|
+ addCriterion("pu_text1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1IsNotNull() {
|
|
|
+ addCriterion("pu_text1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1EqualTo(String value) {
|
|
|
+ addCriterion("pu_text1 =", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1NotEqualTo(String value) {
|
|
|
+ addCriterion("pu_text1 <>", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1GreaterThan(String value) {
|
|
|
+ addCriterion("pu_text1 >", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text1 >=", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1LessThan(String value) {
|
|
|
+ addCriterion("pu_text1 <", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text1 <=", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1Like(String value) {
|
|
|
+ addCriterion("pu_text1 like", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1NotLike(String value) {
|
|
|
+ addCriterion("pu_text1 not like", value, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1In(List<String> values) {
|
|
|
+ addCriterion("pu_text1 in", values, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1NotIn(List<String> values) {
|
|
|
+ addCriterion("pu_text1 not in", values, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1Between(String value1, String value2) {
|
|
|
+ addCriterion("pu_text1 between", value1, value2, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText1NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_text1 not between", value1, value2, "puText1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2IsNull() {
|
|
|
+ addCriterion("pu_text2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2IsNotNull() {
|
|
|
+ addCriterion("pu_text2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2EqualTo(String value) {
|
|
|
+ addCriterion("pu_text2 =", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2NotEqualTo(String value) {
|
|
|
+ addCriterion("pu_text2 <>", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2GreaterThan(String value) {
|
|
|
+ addCriterion("pu_text2 >", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text2 >=", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2LessThan(String value) {
|
|
|
+ addCriterion("pu_text2 <", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text2 <=", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2Like(String value) {
|
|
|
+ addCriterion("pu_text2 like", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2NotLike(String value) {
|
|
|
+ addCriterion("pu_text2 not like", value, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2In(List<String> values) {
|
|
|
+ addCriterion("pu_text2 in", values, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2NotIn(List<String> values) {
|
|
|
+ addCriterion("pu_text2 not in", values, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2Between(String value1, String value2) {
|
|
|
+ addCriterion("pu_text2 between", value1, value2, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_text2 not between", value1, value2, "puText2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3IsNull() {
|
|
|
+ addCriterion("pu_text3 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3IsNotNull() {
|
|
|
+ addCriterion("pu_text3 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3EqualTo(String value) {
|
|
|
+ addCriterion("pu_text3 =", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3NotEqualTo(String value) {
|
|
|
+ addCriterion("pu_text3 <>", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3GreaterThan(String value) {
|
|
|
+ addCriterion("pu_text3 >", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text3 >=", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3LessThan(String value) {
|
|
|
+ addCriterion("pu_text3 <", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text3 <=", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3Like(String value) {
|
|
|
+ addCriterion("pu_text3 like", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3NotLike(String value) {
|
|
|
+ addCriterion("pu_text3 not like", value, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3In(List<String> values) {
|
|
|
+ addCriterion("pu_text3 in", values, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3NotIn(List<String> values) {
|
|
|
+ addCriterion("pu_text3 not in", values, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3Between(String value1, String value2) {
|
|
|
+ addCriterion("pu_text3 between", value1, value2, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText3NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_text3 not between", value1, value2, "puText3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4IsNull() {
|
|
|
+ addCriterion("pu_text4 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4IsNotNull() {
|
|
|
+ addCriterion("pu_text4 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4EqualTo(String value) {
|
|
|
+ addCriterion("pu_text4 =", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4NotEqualTo(String value) {
|
|
|
+ addCriterion("pu_text4 <>", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4GreaterThan(String value) {
|
|
|
+ addCriterion("pu_text4 >", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text4 >=", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4LessThan(String value) {
|
|
|
+ addCriterion("pu_text4 <", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text4 <=", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4Like(String value) {
|
|
|
+ addCriterion("pu_text4 like", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4NotLike(String value) {
|
|
|
+ addCriterion("pu_text4 not like", value, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4In(List<String> values) {
|
|
|
+ addCriterion("pu_text4 in", values, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4NotIn(List<String> values) {
|
|
|
+ addCriterion("pu_text4 not in", values, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4Between(String value1, String value2) {
|
|
|
+ addCriterion("pu_text4 between", value1, value2, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText4NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_text4 not between", value1, value2, "puText4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5IsNull() {
|
|
|
+ addCriterion("pu_text5 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5IsNotNull() {
|
|
|
+ addCriterion("pu_text5 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5EqualTo(String value) {
|
|
|
+ addCriterion("pu_text5 =", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5NotEqualTo(String value) {
|
|
|
+ addCriterion("pu_text5 <>", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5GreaterThan(String value) {
|
|
|
+ addCriterion("pu_text5 >", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text5 >=", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5LessThan(String value) {
|
|
|
+ addCriterion("pu_text5 <", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("pu_text5 <=", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5Like(String value) {
|
|
|
+ addCriterion("pu_text5 like", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5NotLike(String value) {
|
|
|
+ addCriterion("pu_text5 not like", value, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5In(List<String> values) {
|
|
|
+ addCriterion("pu_text5 in", values, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5NotIn(List<String> values) {
|
|
|
+ addCriterion("pu_text5 not in", values, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5Between(String value1, String value2) {
|
|
|
+ addCriterion("pu_text5 between", value1, value2, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPuText5NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("pu_text5 not between", value1, value2, "puText5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criteria extends GeneratedCriteria {
|
|
|
+
|
|
|
+ protected Criteria() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|