|
|
@@ -0,0 +1,1941 @@
|
|
|
+package com.usoftchina.saas.sale.po;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class SaleExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public SaleExample() {
|
|
|
+ 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 andSa_idIsNull() {
|
|
|
+ addCriterion("sa_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idIsNotNull() {
|
|
|
+ addCriterion("sa_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_id =", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idNotEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_id <>", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idGreaterThan(Integer value) {
|
|
|
+ addCriterion("sa_id >", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_id >=", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idLessThan(Integer value) {
|
|
|
+ addCriterion("sa_id <", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_id <=", value, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_id in", values, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idNotIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_id not in", values, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_id between", value1, value2, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_idNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_id not between", value1, value2, "sa_id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeIsNull() {
|
|
|
+ addCriterion("sa_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeIsNotNull() {
|
|
|
+ addCriterion("sa_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeEqualTo(String value) {
|
|
|
+ addCriterion("sa_code =", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_code <>", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeGreaterThan(String value) {
|
|
|
+ addCriterion("sa_code >", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_code >=", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeLessThan(String value) {
|
|
|
+ addCriterion("sa_code <", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_code <=", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeLike(String value) {
|
|
|
+ addCriterion("sa_code like", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeNotLike(String value) {
|
|
|
+ addCriterion("sa_code not like", value, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeIn(List<String> values) {
|
|
|
+ addCriterion("sa_code in", values, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_code not in", values, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_code between", value1, value2, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_codeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_code not between", value1, value2, "sa_code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidIsNull() {
|
|
|
+ addCriterion("sa_custid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidIsNotNull() {
|
|
|
+ addCriterion("sa_custid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_custid =", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_custid <>", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidGreaterThan(Integer value) {
|
|
|
+ addCriterion("sa_custid >", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_custid >=", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidLessThan(Integer value) {
|
|
|
+ addCriterion("sa_custid <", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_custid <=", value, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_custid in", values, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_custid not in", values, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_custid between", value1, value2, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_custid not between", value1, value2, "sa_custid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeIsNull() {
|
|
|
+ addCriterion("sa_custcode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeIsNotNull() {
|
|
|
+ addCriterion("sa_custcode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeEqualTo(String value) {
|
|
|
+ addCriterion("sa_custcode =", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_custcode <>", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeGreaterThan(String value) {
|
|
|
+ addCriterion("sa_custcode >", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_custcode >=", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeLessThan(String value) {
|
|
|
+ addCriterion("sa_custcode <", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_custcode <=", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeLike(String value) {
|
|
|
+ addCriterion("sa_custcode like", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeNotLike(String value) {
|
|
|
+ addCriterion("sa_custcode not like", value, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeIn(List<String> values) {
|
|
|
+ addCriterion("sa_custcode in", values, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_custcode not in", values, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_custcode between", value1, value2, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custcodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_custcode not between", value1, value2, "sa_custcode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameIsNull() {
|
|
|
+ addCriterion("sa_custname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameIsNotNull() {
|
|
|
+ addCriterion("sa_custname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameEqualTo(String value) {
|
|
|
+ addCriterion("sa_custname =", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_custname <>", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameGreaterThan(String value) {
|
|
|
+ addCriterion("sa_custname >", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_custname >=", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameLessThan(String value) {
|
|
|
+ addCriterion("sa_custname <", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_custname <=", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameLike(String value) {
|
|
|
+ addCriterion("sa_custname like", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameNotLike(String value) {
|
|
|
+ addCriterion("sa_custname not like", value, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameIn(List<String> values) {
|
|
|
+ addCriterion("sa_custname in", values, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_custname not in", values, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_custname between", value1, value2, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_custnameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_custname not between", value1, value2, "sa_custname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceIsNull() {
|
|
|
+ addCriterion("sa_toplace is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceIsNotNull() {
|
|
|
+ addCriterion("sa_toplace is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceEqualTo(String value) {
|
|
|
+ addCriterion("sa_toplace =", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_toplace <>", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceGreaterThan(String value) {
|
|
|
+ addCriterion("sa_toplace >", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_toplace >=", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceLessThan(String value) {
|
|
|
+ addCriterion("sa_toplace <", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_toplace <=", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceLike(String value) {
|
|
|
+ addCriterion("sa_toplace like", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceNotLike(String value) {
|
|
|
+ addCriterion("sa_toplace not like", value, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceIn(List<String> values) {
|
|
|
+ addCriterion("sa_toplace in", values, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_toplace not in", values, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_toplace between", value1, value2, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_toplaceNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_toplace not between", value1, value2, "sa_toplace");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalIsNull() {
|
|
|
+ addCriterion("sa_total is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalIsNotNull() {
|
|
|
+ addCriterion("sa_total is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalEqualTo(Double value) {
|
|
|
+ addCriterion("sa_total =", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalNotEqualTo(Double value) {
|
|
|
+ addCriterion("sa_total <>", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalGreaterThan(Double value) {
|
|
|
+ addCriterion("sa_total >", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalGreaterThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("sa_total >=", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalLessThan(Double value) {
|
|
|
+ addCriterion("sa_total <", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalLessThanOrEqualTo(Double value) {
|
|
|
+ addCriterion("sa_total <=", value, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalIn(List<Double> values) {
|
|
|
+ addCriterion("sa_total in", values, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalNotIn(List<Double> values) {
|
|
|
+ addCriterion("sa_total not in", values, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("sa_total between", value1, value2, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalNotBetween(Double value1, Double value2) {
|
|
|
+ addCriterion("sa_total not between", value1, value2, "sa_total");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperIsNull() {
|
|
|
+ addCriterion("sa_totalupper is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperIsNotNull() {
|
|
|
+ addCriterion("sa_totalupper is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperEqualTo(String value) {
|
|
|
+ addCriterion("sa_totalupper =", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_totalupper <>", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperGreaterThan(String value) {
|
|
|
+ addCriterion("sa_totalupper >", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_totalupper >=", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperLessThan(String value) {
|
|
|
+ addCriterion("sa_totalupper <", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_totalupper <=", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperLike(String value) {
|
|
|
+ addCriterion("sa_totalupper like", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperNotLike(String value) {
|
|
|
+ addCriterion("sa_totalupper not like", value, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperIn(List<String> values) {
|
|
|
+ addCriterion("sa_totalupper in", values, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_totalupper not in", values, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_totalupper between", value1, value2, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_totalupperNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_totalupper not between", value1, value2, "sa_totalupper");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkIsNull() {
|
|
|
+ addCriterion("sa_remark is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkIsNotNull() {
|
|
|
+ addCriterion("sa_remark is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkEqualTo(String value) {
|
|
|
+ addCriterion("sa_remark =", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_remark <>", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkGreaterThan(String value) {
|
|
|
+ addCriterion("sa_remark >", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_remark >=", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkLessThan(String value) {
|
|
|
+ addCriterion("sa_remark <", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_remark <=", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkLike(String value) {
|
|
|
+ addCriterion("sa_remark like", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkNotLike(String value) {
|
|
|
+ addCriterion("sa_remark not like", value, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkIn(List<String> values) {
|
|
|
+ addCriterion("sa_remark in", values, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_remark not in", values, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_remark between", value1, value2, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_remarkNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_remark not between", value1, value2, "sa_remark");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusIsNull() {
|
|
|
+ addCriterion("sa_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusIsNotNull() {
|
|
|
+ addCriterion("sa_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusEqualTo(String value) {
|
|
|
+ addCriterion("sa_status =", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_status <>", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusGreaterThan(String value) {
|
|
|
+ addCriterion("sa_status >", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_status >=", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusLessThan(String value) {
|
|
|
+ addCriterion("sa_status <", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_status <=", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusLike(String value) {
|
|
|
+ addCriterion("sa_status like", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusNotLike(String value) {
|
|
|
+ addCriterion("sa_status not like", value, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusIn(List<String> values) {
|
|
|
+ addCriterion("sa_status in", values, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_status not in", values, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_status between", value1, value2, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_status not between", value1, value2, "sa_status");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeIsNull() {
|
|
|
+ addCriterion("sa_statuscode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeIsNotNull() {
|
|
|
+ addCriterion("sa_statuscode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeEqualTo(String value) {
|
|
|
+ addCriterion("sa_statuscode =", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_statuscode <>", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("sa_statuscode >", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_statuscode >=", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeLessThan(String value) {
|
|
|
+ addCriterion("sa_statuscode <", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_statuscode <=", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeLike(String value) {
|
|
|
+ addCriterion("sa_statuscode like", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeNotLike(String value) {
|
|
|
+ addCriterion("sa_statuscode not like", value, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeIn(List<String> values) {
|
|
|
+ addCriterion("sa_statuscode in", values, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_statuscode not in", values, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_statuscode between", value1, value2, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_statuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_statuscode not between", value1, value2, "sa_statuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeIsNull() {
|
|
|
+ addCriterion("sa_sendstatuscode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeIsNotNull() {
|
|
|
+ addCriterion("sa_sendstatuscode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode =", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode <>", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode >", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode >=", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeLessThan(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode <", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode <=", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeLike(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode like", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeNotLike(String value) {
|
|
|
+ addCriterion("sa_sendstatuscode not like", value, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeIn(List<String> values) {
|
|
|
+ addCriterion("sa_sendstatuscode in", values, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_sendstatuscode not in", values, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_sendstatuscode between", value1, value2, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_sendstatuscode not between", value1, value2, "sa_sendstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusIsNull() {
|
|
|
+ addCriterion("sa_sendstatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusIsNotNull() {
|
|
|
+ addCriterion("sa_sendstatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatus =", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatus <>", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusGreaterThan(String value) {
|
|
|
+ addCriterion("sa_sendstatus >", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatus >=", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusLessThan(String value) {
|
|
|
+ addCriterion("sa_sendstatus <", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_sendstatus <=", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusLike(String value) {
|
|
|
+ addCriterion("sa_sendstatus like", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusNotLike(String value) {
|
|
|
+ addCriterion("sa_sendstatus not like", value, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusIn(List<String> values) {
|
|
|
+ addCriterion("sa_sendstatus in", values, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_sendstatus not in", values, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_sendstatus between", value1, value2, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_sendstatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_sendstatus not between", value1, value2, "sa_sendstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusIsNull() {
|
|
|
+ addCriterion("sa_printstatus is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusIsNotNull() {
|
|
|
+ addCriterion("sa_printstatus is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatus =", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatus <>", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusGreaterThan(String value) {
|
|
|
+ addCriterion("sa_printstatus >", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatus >=", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusLessThan(String value) {
|
|
|
+ addCriterion("sa_printstatus <", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatus <=", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusLike(String value) {
|
|
|
+ addCriterion("sa_printstatus like", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusNotLike(String value) {
|
|
|
+ addCriterion("sa_printstatus not like", value, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusIn(List<String> values) {
|
|
|
+ addCriterion("sa_printstatus in", values, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_printstatus not in", values, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_printstatus between", value1, value2, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatusNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_printstatus not between", value1, value2, "sa_printstatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeIsNull() {
|
|
|
+ addCriterion("sa_printstatuscode is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeIsNotNull() {
|
|
|
+ addCriterion("sa_printstatuscode is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatuscode =", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatuscode <>", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeGreaterThan(String value) {
|
|
|
+ addCriterion("sa_printstatuscode >", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatuscode >=", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeLessThan(String value) {
|
|
|
+ addCriterion("sa_printstatuscode <", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_printstatuscode <=", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeLike(String value) {
|
|
|
+ addCriterion("sa_printstatuscode like", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeNotLike(String value) {
|
|
|
+ addCriterion("sa_printstatuscode not like", value, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeIn(List<String> values) {
|
|
|
+ addCriterion("sa_printstatuscode in", values, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_printstatuscode not in", values, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_printstatuscode between", value1, value2, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_printstatuscodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_printstatuscode not between", value1, value2, "sa_printstatuscode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidIsNull() {
|
|
|
+ addCriterion("sa_recorderid is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidIsNotNull() {
|
|
|
+ addCriterion("sa_recorderid is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_recorderid =", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidNotEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_recorderid <>", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidGreaterThan(Integer value) {
|
|
|
+ addCriterion("sa_recorderid >", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_recorderid >=", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidLessThan(Integer value) {
|
|
|
+ addCriterion("sa_recorderid <", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("sa_recorderid <=", value, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_recorderid in", values, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidNotIn(List<Integer> values) {
|
|
|
+ addCriterion("sa_recorderid not in", values, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_recorderid between", value1, value2, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderidNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("sa_recorderid not between", value1, value2, "sa_recorderid");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderIsNull() {
|
|
|
+ addCriterion("sa_recorder is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderIsNotNull() {
|
|
|
+ addCriterion("sa_recorder is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderEqualTo(String value) {
|
|
|
+ addCriterion("sa_recorder =", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderNotEqualTo(String value) {
|
|
|
+ addCriterion("sa_recorder <>", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderGreaterThan(String value) {
|
|
|
+ addCriterion("sa_recorder >", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_recorder >=", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderLessThan(String value) {
|
|
|
+ addCriterion("sa_recorder <", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_recorder <=", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderLike(String value) {
|
|
|
+ addCriterion("sa_recorder like", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderNotLike(String value) {
|
|
|
+ addCriterion("sa_recorder not like", value, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderIn(List<String> values) {
|
|
|
+ addCriterion("sa_recorder in", values, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderNotIn(List<String> values) {
|
|
|
+ addCriterion("sa_recorder not in", values, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_recorder between", value1, value2, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorderNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_recorder not between", value1, value2, "sa_recorder");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateIsNull() {
|
|
|
+ addCriterion("sa_recorddate is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateIsNotNull() {
|
|
|
+ addCriterion("sa_recorddate is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateEqualTo(Date value) {
|
|
|
+ addCriterion("sa_recorddate =", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateNotEqualTo(Date value) {
|
|
|
+ addCriterion("sa_recorddate <>", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateGreaterThan(Date value) {
|
|
|
+ addCriterion("sa_recorddate >", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("sa_recorddate >=", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateLessThan(Date value) {
|
|
|
+ addCriterion("sa_recorddate <", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("sa_recorddate <=", value, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateIn(List<Date> values) {
|
|
|
+ addCriterion("sa_recorddate in", values, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateNotIn(List<Date> values) {
|
|
|
+ addCriterion("sa_recorddate not in", values, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("sa_recorddate between", value1, value2, "sa_recorddate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_recorddateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("sa_recorddate not between", value1, value2, "sa_recorddate");
|
|
|
+ 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 andUpdatetimeIsNull() {
|
|
|
+ addCriterion("updatetime is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeIsNotNull() {
|
|
|
+ addCriterion("updatetime is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeEqualTo(Date value) {
|
|
|
+ addCriterion("updatetime =", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("updatetime <>", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeGreaterThan(Date value) {
|
|
|
+ addCriterion("updatetime >", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updatetime >=", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeLessThan(Date value) {
|
|
|
+ addCriterion("updatetime <", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updatetime <=", value, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeIn(List<Date> values) {
|
|
|
+ addCriterion("updatetime in", values, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("updatetime not in", values, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updatetime between", value1, value2, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updatetime not between", value1, value2, "updatetime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1IsNull() {
|
|
|
+ addCriterion("sa_text1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1IsNotNull() {
|
|
|
+ addCriterion("sa_text1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1EqualTo(String value) {
|
|
|
+ addCriterion("sa_text1 =", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1NotEqualTo(String value) {
|
|
|
+ addCriterion("sa_text1 <>", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1GreaterThan(String value) {
|
|
|
+ addCriterion("sa_text1 >", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text1 >=", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1LessThan(String value) {
|
|
|
+ addCriterion("sa_text1 <", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text1 <=", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1Like(String value) {
|
|
|
+ addCriterion("sa_text1 like", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1NotLike(String value) {
|
|
|
+ addCriterion("sa_text1 not like", value, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1In(List<String> values) {
|
|
|
+ addCriterion("sa_text1 in", values, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1NotIn(List<String> values) {
|
|
|
+ addCriterion("sa_text1 not in", values, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1Between(String value1, String value2) {
|
|
|
+ addCriterion("sa_text1 between", value1, value2, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text1NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_text1 not between", value1, value2, "sa_text1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2IsNull() {
|
|
|
+ addCriterion("sa_text2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2IsNotNull() {
|
|
|
+ addCriterion("sa_text2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2EqualTo(String value) {
|
|
|
+ addCriterion("sa_text2 =", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2NotEqualTo(String value) {
|
|
|
+ addCriterion("sa_text2 <>", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2GreaterThan(String value) {
|
|
|
+ addCriterion("sa_text2 >", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text2 >=", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2LessThan(String value) {
|
|
|
+ addCriterion("sa_text2 <", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text2 <=", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2Like(String value) {
|
|
|
+ addCriterion("sa_text2 like", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2NotLike(String value) {
|
|
|
+ addCriterion("sa_text2 not like", value, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2In(List<String> values) {
|
|
|
+ addCriterion("sa_text2 in", values, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2NotIn(List<String> values) {
|
|
|
+ addCriterion("sa_text2 not in", values, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2Between(String value1, String value2) {
|
|
|
+ addCriterion("sa_text2 between", value1, value2, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_text2 not between", value1, value2, "sa_text2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3IsNull() {
|
|
|
+ addCriterion("sa_text3 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3IsNotNull() {
|
|
|
+ addCriterion("sa_text3 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3EqualTo(String value) {
|
|
|
+ addCriterion("sa_text3 =", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3NotEqualTo(String value) {
|
|
|
+ addCriterion("sa_text3 <>", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3GreaterThan(String value) {
|
|
|
+ addCriterion("sa_text3 >", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text3 >=", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3LessThan(String value) {
|
|
|
+ addCriterion("sa_text3 <", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text3 <=", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3Like(String value) {
|
|
|
+ addCriterion("sa_text3 like", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3NotLike(String value) {
|
|
|
+ addCriterion("sa_text3 not like", value, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3In(List<String> values) {
|
|
|
+ addCriterion("sa_text3 in", values, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3NotIn(List<String> values) {
|
|
|
+ addCriterion("sa_text3 not in", values, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3Between(String value1, String value2) {
|
|
|
+ addCriterion("sa_text3 between", value1, value2, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text3NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_text3 not between", value1, value2, "sa_text3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4IsNull() {
|
|
|
+ addCriterion("sa_text4 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4IsNotNull() {
|
|
|
+ addCriterion("sa_text4 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4EqualTo(String value) {
|
|
|
+ addCriterion("sa_text4 =", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4NotEqualTo(String value) {
|
|
|
+ addCriterion("sa_text4 <>", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4GreaterThan(String value) {
|
|
|
+ addCriterion("sa_text4 >", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text4 >=", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4LessThan(String value) {
|
|
|
+ addCriterion("sa_text4 <", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text4 <=", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4Like(String value) {
|
|
|
+ addCriterion("sa_text4 like", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4NotLike(String value) {
|
|
|
+ addCriterion("sa_text4 not like", value, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4In(List<String> values) {
|
|
|
+ addCriterion("sa_text4 in", values, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4NotIn(List<String> values) {
|
|
|
+ addCriterion("sa_text4 not in", values, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4Between(String value1, String value2) {
|
|
|
+ addCriterion("sa_text4 between", value1, value2, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text4NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_text4 not between", value1, value2, "sa_text4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5IsNull() {
|
|
|
+ addCriterion("sa_text5 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5IsNotNull() {
|
|
|
+ addCriterion("sa_text5 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5EqualTo(String value) {
|
|
|
+ addCriterion("sa_text5 =", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5NotEqualTo(String value) {
|
|
|
+ addCriterion("sa_text5 <>", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5GreaterThan(String value) {
|
|
|
+ addCriterion("sa_text5 >", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text5 >=", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5LessThan(String value) {
|
|
|
+ addCriterion("sa_text5 <", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("sa_text5 <=", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5Like(String value) {
|
|
|
+ addCriterion("sa_text5 like", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5NotLike(String value) {
|
|
|
+ addCriterion("sa_text5 not like", value, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5In(List<String> values) {
|
|
|
+ addCriterion("sa_text5 in", values, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5NotIn(List<String> values) {
|
|
|
+ addCriterion("sa_text5 not in", values, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5Between(String value1, String value2) {
|
|
|
+ addCriterion("sa_text5 between", value1, value2, "sa_text5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andSa_text5NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("sa_text5 not between", value1, value2, "sa_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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|