|
|
@@ -0,0 +1,2296 @@
|
|
|
+package com.usoftchina.saas.money.po;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author hx
|
|
|
+ * @createtime 2018-10-22 16:26
|
|
|
+ */
|
|
|
+public class VerificationExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public VerificationExample() {
|
|
|
+ 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 andVc_idIsNull() {
|
|
|
+ addCriterion("vc_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idIsNotNull() {
|
|
|
+ addCriterion("vc_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_id =", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_id <>", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_id >", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_id >=", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idLessThan(Integer value) {
|
|
|
+ addCriterion("vc_id <", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_id <=", value, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_id in", values, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_id not in", values, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_id between", value1, value2, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_idNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_id not between", value1, value2, "vc_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeIsNull() {
|
|
|
+ addCriterion("vc_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeIsNotNull() {
|
|
|
+ addCriterion("vc_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeEqualTo(String value) {
|
|
|
+ addCriterion("vc_code =", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_code <>", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeGreaterThan(String value) {
|
|
|
+ addCriterion("vc_code >", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_code >=", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeLessThan(String value) {
|
|
|
+ addCriterion("vc_code <", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_code <=", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeLike(String value) {
|
|
|
+ addCriterion("vc_code like", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeNotLike(String value) {
|
|
|
+ addCriterion("vc_code not like", value, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeIn(List<String> values) {
|
|
|
+ addCriterion("vc_code in", values, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_code not in", values, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_code between", value1, value2, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_codeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_code not between", value1, value2, "vc_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindIsNull() {
|
|
|
+ addCriterion("vc_kind is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindIsNotNull() {
|
|
|
+ addCriterion("vc_kind is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindEqualTo(String value) {
|
|
|
+ addCriterion("vc_kind =", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_kind <>", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindGreaterThan(String value) {
|
|
|
+ addCriterion("vc_kind >", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_kind >=", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindLessThan(String value) {
|
|
|
+ addCriterion("vc_kind <", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_kind <=", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindLike(String value) {
|
|
|
+ addCriterion("vc_kind like", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindNotLike(String value) {
|
|
|
+ addCriterion("vc_kind not like", value, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindIn(List<String> values) {
|
|
|
+ addCriterion("vc_kind in", values, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_kind not in", values, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_kind between", value1, value2, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_kindNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_kind not between", value1, value2, "vc_kind");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateIsNull() {
|
|
|
+ addCriterion("vc_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateIsNotNull() {
|
|
|
+ addCriterion("vc_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateEqualTo(Date value) {
|
|
|
+ addCriterion("vc_date =", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateNotEqualTo(Date value) {
|
|
|
+ addCriterion("vc_date <>", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateGreaterThan(Date value) {
|
|
|
+ addCriterion("vc_date >", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("vc_date >=", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateLessThan(Date value) {
|
|
|
+ addCriterion("vc_date <", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("vc_date <=", value, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateIn(List<Date> values) {
|
|
|
+ addCriterion("vc_date in", values, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateNotIn(List<Date> values) {
|
|
|
+ addCriterion("vc_date not in", values, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("vc_date between", value1, value2, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_dateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("vc_date not between", value1, value2, "vc_date");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidIsNull() {
|
|
|
+ addCriterion("vc_vendid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidIsNotNull() {
|
|
|
+ addCriterion("vc_vendid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_vendid =", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_vendid <>", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_vendid >", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_vendid >=", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidLessThan(Integer value) {
|
|
|
+ addCriterion("vc_vendid <", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_vendid <=", value, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_vendid in", values, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_vendid not in", values, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_vendid between", value1, value2, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_vendid not between", value1, value2, "vc_vendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeIsNull() {
|
|
|
+ addCriterion("vc_vendcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeIsNotNull() {
|
|
|
+ addCriterion("vc_vendcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendcode =", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendcode <>", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeGreaterThan(String value) {
|
|
|
+ addCriterion("vc_vendcode >", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendcode >=", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeLessThan(String value) {
|
|
|
+ addCriterion("vc_vendcode <", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendcode <=", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeLike(String value) {
|
|
|
+ addCriterion("vc_vendcode like", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeNotLike(String value) {
|
|
|
+ addCriterion("vc_vendcode not like", value, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeIn(List<String> values) {
|
|
|
+ addCriterion("vc_vendcode in", values, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_vendcode not in", values, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_vendcode between", value1, value2, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_vendcode not between", value1, value2, "vc_vendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameIsNull() {
|
|
|
+ addCriterion("vc_vendname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameIsNotNull() {
|
|
|
+ addCriterion("vc_vendname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendname =", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendname <>", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameGreaterThan(String value) {
|
|
|
+ addCriterion("vc_vendname >", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendname >=", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameLessThan(String value) {
|
|
|
+ addCriterion("vc_vendname <", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_vendname <=", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameLike(String value) {
|
|
|
+ addCriterion("vc_vendname like", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameNotLike(String value) {
|
|
|
+ addCriterion("vc_vendname not like", value, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameIn(List<String> values) {
|
|
|
+ addCriterion("vc_vendname in", values, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_vendname not in", values, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_vendname between", value1, value2, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_vendnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_vendname not between", value1, value2, "vc_vendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidIsNull() {
|
|
|
+ addCriterion("vc_custid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidIsNotNull() {
|
|
|
+ addCriterion("vc_custid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_custid =", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_custid <>", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_custid >", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_custid >=", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidLessThan(Integer value) {
|
|
|
+ addCriterion("vc_custid <", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_custid <=", value, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_custid in", values, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_custid not in", values, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_custid between", value1, value2, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_custid not between", value1, value2, "vc_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeIsNull() {
|
|
|
+ addCriterion("vc_custcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeIsNotNull() {
|
|
|
+ addCriterion("vc_custcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeEqualTo(String value) {
|
|
|
+ addCriterion("vc_custcode =", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_custcode <>", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeGreaterThan(String value) {
|
|
|
+ addCriterion("vc_custcode >", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_custcode >=", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeLessThan(String value) {
|
|
|
+ addCriterion("vc_custcode <", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_custcode <=", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeLike(String value) {
|
|
|
+ addCriterion("vc_custcode like", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeNotLike(String value) {
|
|
|
+ addCriterion("vc_custcode not like", value, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeIn(List<String> values) {
|
|
|
+ addCriterion("vc_custcode in", values, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_custcode not in", values, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_custcode between", value1, value2, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_custcode not between", value1, value2, "vc_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameIsNull() {
|
|
|
+ addCriterion("vc_custname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameIsNotNull() {
|
|
|
+ addCriterion("vc_custname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameEqualTo(String value) {
|
|
|
+ addCriterion("vc_custname =", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_custname <>", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameGreaterThan(String value) {
|
|
|
+ addCriterion("vc_custname >", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_custname >=", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameLessThan(String value) {
|
|
|
+ addCriterion("vc_custname <", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_custname <=", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameLike(String value) {
|
|
|
+ addCriterion("vc_custname like", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameNotLike(String value) {
|
|
|
+ addCriterion("vc_custname not like", value, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameIn(List<String> values) {
|
|
|
+ addCriterion("vc_custname in", values, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_custname not in", values, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_custname between", value1, value2, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_custnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_custname not between", value1, value2, "vc_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidIsNull() {
|
|
|
+ addCriterion("vc_turnvendid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidIsNotNull() {
|
|
|
+ addCriterion("vc_turnvendid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid =", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid <>", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid >", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid >=", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidLessThan(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid <", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turnvendid <=", value, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_turnvendid in", values, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_turnvendid not in", values, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_turnvendid between", value1, value2, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_turnvendid not between", value1, value2, "vc_turnvendid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeIsNull() {
|
|
|
+ addCriterion("vc_turnvendcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeIsNotNull() {
|
|
|
+ addCriterion("vc_turnvendcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendcode =", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendcode <>", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeGreaterThan(String value) {
|
|
|
+ addCriterion("vc_turnvendcode >", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendcode >=", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeLessThan(String value) {
|
|
|
+ addCriterion("vc_turnvendcode <", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendcode <=", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeLike(String value) {
|
|
|
+ addCriterion("vc_turnvendcode like", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeNotLike(String value) {
|
|
|
+ addCriterion("vc_turnvendcode not like", value, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeIn(List<String> values) {
|
|
|
+ addCriterion("vc_turnvendcode in", values, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_turnvendcode not in", values, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turnvendcode between", value1, value2, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turnvendcode not between", value1, value2, "vc_turnvendcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameIsNull() {
|
|
|
+ addCriterion("vc_turnvendname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameIsNotNull() {
|
|
|
+ addCriterion("vc_turnvendname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendname =", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendname <>", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameGreaterThan(String value) {
|
|
|
+ addCriterion("vc_turnvendname >", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendname >=", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameLessThan(String value) {
|
|
|
+ addCriterion("vc_turnvendname <", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turnvendname <=", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameLike(String value) {
|
|
|
+ addCriterion("vc_turnvendname like", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameNotLike(String value) {
|
|
|
+ addCriterion("vc_turnvendname not like", value, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameIn(List<String> values) {
|
|
|
+ addCriterion("vc_turnvendname in", values, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_turnvendname not in", values, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turnvendname between", value1, value2, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turnvendnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turnvendname not between", value1, value2, "vc_turnvendname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidIsNull() {
|
|
|
+ addCriterion("vc_turncustid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidIsNotNull() {
|
|
|
+ addCriterion("vc_turncustid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turncustid =", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turncustid <>", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_turncustid >", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turncustid >=", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidLessThan(Integer value) {
|
|
|
+ addCriterion("vc_turncustid <", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_turncustid <=", value, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_turncustid in", values, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_turncustid not in", values, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_turncustid between", value1, value2, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_turncustid not between", value1, value2, "vc_turncustid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeIsNull() {
|
|
|
+ addCriterion("vc_turncustcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeIsNotNull() {
|
|
|
+ addCriterion("vc_turncustcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustcode =", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustcode <>", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeGreaterThan(String value) {
|
|
|
+ addCriterion("vc_turncustcode >", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustcode >=", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeLessThan(String value) {
|
|
|
+ addCriterion("vc_turncustcode <", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustcode <=", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeLike(String value) {
|
|
|
+ addCriterion("vc_turncustcode like", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeNotLike(String value) {
|
|
|
+ addCriterion("vc_turncustcode not like", value, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeIn(List<String> values) {
|
|
|
+ addCriterion("vc_turncustcode in", values, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_turncustcode not in", values, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turncustcode between", value1, value2, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turncustcode not between", value1, value2, "vc_turncustcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameIsNull() {
|
|
|
+ addCriterion("vc_turncustname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameIsNotNull() {
|
|
|
+ addCriterion("vc_turncustname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustname =", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustname <>", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameGreaterThan(String value) {
|
|
|
+ addCriterion("vc_turncustname >", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustname >=", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameLessThan(String value) {
|
|
|
+ addCriterion("vc_turncustname <", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_turncustname <=", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameLike(String value) {
|
|
|
+ addCriterion("vc_turncustname like", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameNotLike(String value) {
|
|
|
+ addCriterion("vc_turncustname not like", value, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameIn(List<String> values) {
|
|
|
+ addCriterion("vc_turncustname in", values, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_turncustname not in", values, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turncustname between", value1, value2, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_turncustnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_turncustname not between", value1, value2, "vc_turncustname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1IsNull() {
|
|
|
+ addCriterion("vc_amount1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1IsNotNull() {
|
|
|
+ addCriterion("vc_amount1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1EqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount1 =", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1NotEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount1 <>", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1GreaterThan(Double value) {
|
|
|
+ addCriterion("vc_amount1 >", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1GreaterThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount1 >=", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1LessThan(Double value) {
|
|
|
+ addCriterion("vc_amount1 <", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1LessThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount1 <=", value, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1In(List<Double> values) {
|
|
|
+ addCriterion("vc_amount1 in", values, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1NotIn(List<Double> values) {
|
|
|
+ addCriterion("vc_amount1 not in", values, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1Between(Double value1, Double value2) {
|
|
|
+ addCriterion("vc_amount1 between", value1, value2, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount1NotBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("vc_amount1 not between", value1, value2, "vc_amount1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2IsNull() {
|
|
|
+ addCriterion("vc_amount2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2IsNotNull() {
|
|
|
+ addCriterion("vc_amount2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2EqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount2 =", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2NotEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount2 <>", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2GreaterThan(Double value) {
|
|
|
+ addCriterion("vc_amount2 >", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2GreaterThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount2 >=", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2LessThan(Double value) {
|
|
|
+ addCriterion("vc_amount2 <", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2LessThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("vc_amount2 <=", value, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2In(List<Double> values) {
|
|
|
+ addCriterion("vc_amount2 in", values, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2NotIn(List<Double> values) {
|
|
|
+ addCriterion("vc_amount2 not in", values, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2Between(Double value1, Double value2) {
|
|
|
+ addCriterion("vc_amount2 between", value1, value2, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_amount2NotBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("vc_amount2 not between", value1, value2, "vc_amount2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidIsNull() {
|
|
|
+ addCriterion("vc_recorderid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidIsNotNull() {
|
|
|
+ addCriterion("vc_recorderid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_recorderid =", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_recorderid <>", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_recorderid >", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_recorderid >=", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidLessThan(Integer value) {
|
|
|
+ addCriterion("vc_recorderid <", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_recorderid <=", value, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_recorderid in", values, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_recorderid not in", values, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_recorderid between", value1, value2, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_recorderid not between", value1, value2, "vc_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderIsNull() {
|
|
|
+ addCriterion("vc_recorder is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderIsNotNull() {
|
|
|
+ addCriterion("vc_recorder is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderEqualTo(String value) {
|
|
|
+ addCriterion("vc_recorder =", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_recorder <>", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderGreaterThan(String value) {
|
|
|
+ addCriterion("vc_recorder >", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_recorder >=", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderLessThan(String value) {
|
|
|
+ addCriterion("vc_recorder <", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_recorder <=", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderLike(String value) {
|
|
|
+ addCriterion("vc_recorder like", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderNotLike(String value) {
|
|
|
+ addCriterion("vc_recorder not like", value, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderIn(List<String> values) {
|
|
|
+ addCriterion("vc_recorder in", values, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_recorder not in", values, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_recorder between", value1, value2, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorderNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_recorder not between", value1, value2, "vc_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateIsNull() {
|
|
|
+ addCriterion("vc_recorddate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateIsNotNull() {
|
|
|
+ addCriterion("vc_recorddate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateEqualTo(Date value) {
|
|
|
+ addCriterion("vc_recorddate =", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateNotEqualTo(Date value) {
|
|
|
+ addCriterion("vc_recorddate <>", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateGreaterThan(Date value) {
|
|
|
+ addCriterion("vc_recorddate >", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("vc_recorddate >=", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateLessThan(Date value) {
|
|
|
+ addCriterion("vc_recorddate <", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("vc_recorddate <=", value, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateIn(List<Date> values) {
|
|
|
+ addCriterion("vc_recorddate in", values, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateNotIn(List<Date> values) {
|
|
|
+ addCriterion("vc_recorddate not in", values, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("vc_recorddate between", value1, value2, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_recorddateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("vc_recorddate not between", value1, value2, "vc_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusIsNull() {
|
|
|
+ addCriterion("vc_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusIsNotNull() {
|
|
|
+ addCriterion("vc_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_status =", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_status <>", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusGreaterThan(Integer value) {
|
|
|
+ addCriterion("vc_status >", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_status >=", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusLessThan(Integer value) {
|
|
|
+ addCriterion("vc_status <", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("vc_status <=", value, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_status in", values, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("vc_status not in", values, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_status between", value1, value2, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("vc_status not between", value1, value2, "vc_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeIsNull() {
|
|
|
+ addCriterion("vc_statuscode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeIsNotNull() {
|
|
|
+ addCriterion("vc_statuscode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode =", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode <>", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode >", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode >=", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeLessThan(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode <", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("vc_statuscode <=", value, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("vc_statuscode in", values, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("vc_statuscode not in", values, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("vc_statuscode between", value1, value2, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_statuscodeNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("vc_statuscode not between", value1, value2, "vc_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkIsNull() {
|
|
|
+ addCriterion("vc_remark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkIsNotNull() {
|
|
|
+ addCriterion("vc_remark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkEqualTo(String value) {
|
|
|
+ addCriterion("vc_remark =", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkNotEqualTo(String value) {
|
|
|
+ addCriterion("vc_remark <>", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkGreaterThan(String value) {
|
|
|
+ addCriterion("vc_remark >", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_remark >=", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkLessThan(String value) {
|
|
|
+ addCriterion("vc_remark <", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_remark <=", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkLike(String value) {
|
|
|
+ addCriterion("vc_remark like", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkNotLike(String value) {
|
|
|
+ addCriterion("vc_remark not like", value, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkIn(List<String> values) {
|
|
|
+ addCriterion("vc_remark in", values, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkNotIn(List<String> values) {
|
|
|
+ addCriterion("vc_remark not in", values, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_remark between", value1, value2, "vc_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_remarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_remark not between", value1, value2, "vc_remark");
|
|
|
+ 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 andUpdaterIdIsNull() {
|
|
|
+ addCriterion("updaterId is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdIsNotNull() {
|
|
|
+ addCriterion("updaterId is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdEqualTo(Integer value) {
|
|
|
+ addCriterion("updaterId =", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("updaterId <>", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("updaterId >", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("updaterId >=", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdLessThan(Integer value) {
|
|
|
+ addCriterion("updaterId <", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("updaterId <=", value, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdIn(List<Integer> values) {
|
|
|
+ addCriterion("updaterId in", values, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("updaterId not in", values, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("updaterId between", value1, value2, "updaterId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdaterIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("updaterId not between", value1, value2, "updaterId");
|
|
|
+ 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 andVc_text1IsNull() {
|
|
|
+ addCriterion("vc_text1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1IsNotNull() {
|
|
|
+ addCriterion("vc_text1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1EqualTo(String value) {
|
|
|
+ addCriterion("vc_text1 =", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1NotEqualTo(String value) {
|
|
|
+ addCriterion("vc_text1 <>", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1GreaterThan(String value) {
|
|
|
+ addCriterion("vc_text1 >", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text1 >=", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1LessThan(String value) {
|
|
|
+ addCriterion("vc_text1 <", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text1 <=", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1Like(String value) {
|
|
|
+ addCriterion("vc_text1 like", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1NotLike(String value) {
|
|
|
+ addCriterion("vc_text1 not like", value, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1In(List<String> values) {
|
|
|
+ addCriterion("vc_text1 in", values, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1NotIn(List<String> values) {
|
|
|
+ addCriterion("vc_text1 not in", values, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1Between(String value1, String value2) {
|
|
|
+ addCriterion("vc_text1 between", value1, value2, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text1NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_text1 not between", value1, value2, "vc_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2IsNull() {
|
|
|
+ addCriterion("vc_text2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2IsNotNull() {
|
|
|
+ addCriterion("vc_text2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2EqualTo(String value) {
|
|
|
+ addCriterion("vc_text2 =", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2NotEqualTo(String value) {
|
|
|
+ addCriterion("vc_text2 <>", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2GreaterThan(String value) {
|
|
|
+ addCriterion("vc_text2 >", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text2 >=", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2LessThan(String value) {
|
|
|
+ addCriterion("vc_text2 <", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text2 <=", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2Like(String value) {
|
|
|
+ addCriterion("vc_text2 like", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2NotLike(String value) {
|
|
|
+ addCriterion("vc_text2 not like", value, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2In(List<String> values) {
|
|
|
+ addCriterion("vc_text2 in", values, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2NotIn(List<String> values) {
|
|
|
+ addCriterion("vc_text2 not in", values, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2Between(String value1, String value2) {
|
|
|
+ addCriterion("vc_text2 between", value1, value2, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_text2 not between", value1, value2, "vc_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3IsNull() {
|
|
|
+ addCriterion("vc_text3 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3IsNotNull() {
|
|
|
+ addCriterion("vc_text3 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3EqualTo(String value) {
|
|
|
+ addCriterion("vc_text3 =", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3NotEqualTo(String value) {
|
|
|
+ addCriterion("vc_text3 <>", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3GreaterThan(String value) {
|
|
|
+ addCriterion("vc_text3 >", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text3 >=", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3LessThan(String value) {
|
|
|
+ addCriterion("vc_text3 <", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text3 <=", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3Like(String value) {
|
|
|
+ addCriterion("vc_text3 like", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3NotLike(String value) {
|
|
|
+ addCriterion("vc_text3 not like", value, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3In(List<String> values) {
|
|
|
+ addCriterion("vc_text3 in", values, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3NotIn(List<String> values) {
|
|
|
+ addCriterion("vc_text3 not in", values, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3Between(String value1, String value2) {
|
|
|
+ addCriterion("vc_text3 between", value1, value2, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text3NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_text3 not between", value1, value2, "vc_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4IsNull() {
|
|
|
+ addCriterion("vc_text4 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4IsNotNull() {
|
|
|
+ addCriterion("vc_text4 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4EqualTo(String value) {
|
|
|
+ addCriterion("vc_text4 =", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4NotEqualTo(String value) {
|
|
|
+ addCriterion("vc_text4 <>", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4GreaterThan(String value) {
|
|
|
+ addCriterion("vc_text4 >", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text4 >=", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4LessThan(String value) {
|
|
|
+ addCriterion("vc_text4 <", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text4 <=", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4Like(String value) {
|
|
|
+ addCriterion("vc_text4 like", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4NotLike(String value) {
|
|
|
+ addCriterion("vc_text4 not like", value, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4In(List<String> values) {
|
|
|
+ addCriterion("vc_text4 in", values, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4NotIn(List<String> values) {
|
|
|
+ addCriterion("vc_text4 not in", values, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4Between(String value1, String value2) {
|
|
|
+ addCriterion("vc_text4 between", value1, value2, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text4NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_text4 not between", value1, value2, "vc_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5IsNull() {
|
|
|
+ addCriterion("vc_text5 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5IsNotNull() {
|
|
|
+ addCriterion("vc_text5 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5EqualTo(String value) {
|
|
|
+ addCriterion("vc_text5 =", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5NotEqualTo(String value) {
|
|
|
+ addCriterion("vc_text5 <>", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5GreaterThan(String value) {
|
|
|
+ addCriterion("vc_text5 >", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text5 >=", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5LessThan(String value) {
|
|
|
+ addCriterion("vc_text5 <", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("vc_text5 <=", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5Like(String value) {
|
|
|
+ addCriterion("vc_text5 like", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5NotLike(String value) {
|
|
|
+ addCriterion("vc_text5 not like", value, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5In(List<String> values) {
|
|
|
+ addCriterion("vc_text5 in", values, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5NotIn(List<String> values) {
|
|
|
+ addCriterion("vc_text5 not in", values, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5Between(String value1, String value2) {
|
|
|
+ addCriterion("vc_text5 between", value1, value2, "vc_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andVc_text5NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("vc_text5 not between", value1, value2, "vc_text5");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|