|
@@ -0,0 +1,1562 @@
|
|
|
+package com.hwrj.cloud.admin.model;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class OmsPreItemExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public OmsPreItemExample() {
|
|
|
+ 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 andIdIsNull() {
|
|
|
+ addCriterion("id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIsNotNull() {
|
|
|
+ addCriterion("id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdEqualTo(Long value) {
|
|
|
+ addCriterion("id =", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("id <>", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThan(Long value) {
|
|
|
+ addCriterion("id >", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("id >=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThan(Long value) {
|
|
|
+ addCriterion("id <", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("id <=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIn(List<Long> values) {
|
|
|
+ addCriterion("id in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("id not in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIsNull() {
|
|
|
+ addCriterion("product_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIsNotNull() {
|
|
|
+ addCriterion("product_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdEqualTo(Long value) {
|
|
|
+ addCriterion("product_id =", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("product_id <>", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdGreaterThan(Long value) {
|
|
|
+ addCriterion("product_id >", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_id >=", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdLessThan(Long value) {
|
|
|
+ addCriterion("product_id <", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_id <=", value, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdIn(List<Long> values) {
|
|
|
+ addCriterion("product_id in", values, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("product_id not in", values, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_id between", value1, value2, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_id not between", value1, value2, "productId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdIsNull() {
|
|
|
+ addCriterion("member_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdIsNotNull() {
|
|
|
+ addCriterion("member_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdEqualTo(Long value) {
|
|
|
+ addCriterion("member_id =", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("member_id <>", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdGreaterThan(Long value) {
|
|
|
+ addCriterion("member_id >", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("member_id >=", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdLessThan(Long value) {
|
|
|
+ addCriterion("member_id <", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("member_id <=", value, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdIn(List<Long> values) {
|
|
|
+ addCriterion("member_id in", values, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("member_id not in", values, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("member_id between", value1, value2, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("member_id not between", value1, value2, "memberId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdIsNull() {
|
|
|
+ addCriterion("comp_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdIsNotNull() {
|
|
|
+ addCriterion("comp_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdEqualTo(Long value) {
|
|
|
+ addCriterion("comp_id =", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("comp_id <>", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdGreaterThan(Long value) {
|
|
|
+ addCriterion("comp_id >", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("comp_id >=", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdLessThan(Long value) {
|
|
|
+ addCriterion("comp_id <", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("comp_id <=", value, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdIn(List<Long> values) {
|
|
|
+ addCriterion("comp_id in", values, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("comp_id not in", values, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("comp_id between", value1, value2, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("comp_id not between", value1, value2, "compId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdIsNull() {
|
|
|
+ addCriterion("push_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdIsNotNull() {
|
|
|
+ addCriterion("push_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdEqualTo(Long value) {
|
|
|
+ addCriterion("push_id =", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("push_id <>", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdGreaterThan(Long value) {
|
|
|
+ addCriterion("push_id >", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("push_id >=", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdLessThan(Long value) {
|
|
|
+ addCriterion("push_id <", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("push_id <=", value, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdIn(List<Long> values) {
|
|
|
+ addCriterion("push_id in", values, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("push_id not in", values, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("push_id between", value1, value2, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPushIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("push_id not between", value1, value2, "pushId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdIsNull() {
|
|
|
+ addCriterion("origin_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdIsNotNull() {
|
|
|
+ addCriterion("origin_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdEqualTo(Long value) {
|
|
|
+ addCriterion("origin_id =", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("origin_id <>", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdGreaterThan(Long value) {
|
|
|
+ addCriterion("origin_id >", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("origin_id >=", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdLessThan(Long value) {
|
|
|
+ addCriterion("origin_id <", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("origin_id <=", value, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdIn(List<Long> values) {
|
|
|
+ addCriterion("origin_id in", values, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("origin_id not in", values, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("origin_id between", value1, value2, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("origin_id not between", value1, value2, "originId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameIsNull() {
|
|
|
+ addCriterion("origin_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameIsNotNull() {
|
|
|
+ addCriterion("origin_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameEqualTo(String value) {
|
|
|
+ addCriterion("origin_name =", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameNotEqualTo(String value) {
|
|
|
+ addCriterion("origin_name <>", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameGreaterThan(String value) {
|
|
|
+ addCriterion("origin_name >", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("origin_name >=", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameLessThan(String value) {
|
|
|
+ addCriterion("origin_name <", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("origin_name <=", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameLike(String value) {
|
|
|
+ addCriterion("origin_name like", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameNotLike(String value) {
|
|
|
+ addCriterion("origin_name not like", value, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameIn(List<String> values) {
|
|
|
+ addCriterion("origin_name in", values, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameNotIn(List<String> values) {
|
|
|
+ addCriterion("origin_name not in", values, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("origin_name between", value1, value2, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andOriginNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("origin_name not between", value1, value2, "originName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameIsNull() {
|
|
|
+ addCriterion("comp_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameIsNotNull() {
|
|
|
+ addCriterion("comp_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameEqualTo(String value) {
|
|
|
+ addCriterion("comp_name =", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameNotEqualTo(String value) {
|
|
|
+ addCriterion("comp_name <>", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameGreaterThan(String value) {
|
|
|
+ addCriterion("comp_name >", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("comp_name >=", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameLessThan(String value) {
|
|
|
+ addCriterion("comp_name <", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("comp_name <=", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameLike(String value) {
|
|
|
+ addCriterion("comp_name like", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameNotLike(String value) {
|
|
|
+ addCriterion("comp_name not like", value, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameIn(List<String> values) {
|
|
|
+ addCriterion("comp_name in", values, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameNotIn(List<String> values) {
|
|
|
+ addCriterion("comp_name not in", values, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("comp_name between", value1, value2, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("comp_name not between", value1, value2, "compName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceIsNull() {
|
|
|
+ addCriterion("price is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceIsNotNull() {
|
|
|
+ addCriterion("price is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("price =", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("price <>", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("price >", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("price >=", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceLessThan(BigDecimal value) {
|
|
|
+ addCriterion("price <", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("price <=", value, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("price in", values, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("price not in", values, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("price between", value1, value2, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("price not between", value1, value2, "price");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicIsNull() {
|
|
|
+ addCriterion("product_pic is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicIsNotNull() {
|
|
|
+ addCriterion("product_pic is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicEqualTo(String value) {
|
|
|
+ addCriterion("product_pic =", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicNotEqualTo(String value) {
|
|
|
+ addCriterion("product_pic <>", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicGreaterThan(String value) {
|
|
|
+ addCriterion("product_pic >", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_pic >=", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicLessThan(String value) {
|
|
|
+ addCriterion("product_pic <", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_pic <=", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicLike(String value) {
|
|
|
+ addCriterion("product_pic like", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicNotLike(String value) {
|
|
|
+ addCriterion("product_pic not like", value, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicIn(List<String> values) {
|
|
|
+ addCriterion("product_pic in", values, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicNotIn(List<String> values) {
|
|
|
+ addCriterion("product_pic not in", values, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_pic between", value1, value2, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductPicNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_pic not between", value1, value2, "productPic");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIsNull() {
|
|
|
+ addCriterion("product_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIsNotNull() {
|
|
|
+ addCriterion("product_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameEqualTo(String value) {
|
|
|
+ addCriterion("product_name =", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotEqualTo(String value) {
|
|
|
+ addCriterion("product_name <>", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameGreaterThan(String value) {
|
|
|
+ addCriterion("product_name >", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_name >=", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLessThan(String value) {
|
|
|
+ addCriterion("product_name <", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_name <=", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameLike(String value) {
|
|
|
+ addCriterion("product_name like", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotLike(String value) {
|
|
|
+ addCriterion("product_name not like", value, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameIn(List<String> values) {
|
|
|
+ addCriterion("product_name in", values, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotIn(List<String> values) {
|
|
|
+ addCriterion("product_name not in", values, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_name between", value1, value2, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_name not between", value1, value2, "productName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleIsNull() {
|
|
|
+ addCriterion("product_sub_title is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleIsNotNull() {
|
|
|
+ addCriterion("product_sub_title is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleEqualTo(String value) {
|
|
|
+ addCriterion("product_sub_title =", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleNotEqualTo(String value) {
|
|
|
+ addCriterion("product_sub_title <>", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleGreaterThan(String value) {
|
|
|
+ addCriterion("product_sub_title >", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sub_title >=", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleLessThan(String value) {
|
|
|
+ addCriterion("product_sub_title <", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sub_title <=", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleLike(String value) {
|
|
|
+ addCriterion("product_sub_title like", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleNotLike(String value) {
|
|
|
+ addCriterion("product_sub_title not like", value, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleIn(List<String> values) {
|
|
|
+ addCriterion("product_sub_title in", values, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleNotIn(List<String> values) {
|
|
|
+ addCriterion("product_sub_title not in", values, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sub_title between", value1, value2, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSubTitleNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sub_title not between", value1, value2, "productSubTitle");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeIsNull() {
|
|
|
+ addCriterion("product_sku_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeIsNotNull() {
|
|
|
+ addCriterion("product_sku_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeEqualTo(String value) {
|
|
|
+ addCriterion("product_sku_code =", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("product_sku_code <>", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeGreaterThan(String value) {
|
|
|
+ addCriterion("product_sku_code >", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sku_code >=", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeLessThan(String value) {
|
|
|
+ addCriterion("product_sku_code <", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sku_code <=", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeLike(String value) {
|
|
|
+ addCriterion("product_sku_code like", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeNotLike(String value) {
|
|
|
+ addCriterion("product_sku_code not like", value, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeIn(List<String> values) {
|
|
|
+ addCriterion("product_sku_code in", values, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("product_sku_code not in", values, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sku_code between", value1, value2, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSkuCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sku_code not between", value1, value2, "productSkuCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameIsNull() {
|
|
|
+ addCriterion("member_nickname is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameIsNotNull() {
|
|
|
+ addCriterion("member_nickname is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameEqualTo(String value) {
|
|
|
+ addCriterion("member_nickname =", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameNotEqualTo(String value) {
|
|
|
+ addCriterion("member_nickname <>", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameGreaterThan(String value) {
|
|
|
+ addCriterion("member_nickname >", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("member_nickname >=", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameLessThan(String value) {
|
|
|
+ addCriterion("member_nickname <", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("member_nickname <=", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameLike(String value) {
|
|
|
+ addCriterion("member_nickname like", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameNotLike(String value) {
|
|
|
+ addCriterion("member_nickname not like", value, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameIn(List<String> values) {
|
|
|
+ addCriterion("member_nickname in", values, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameNotIn(List<String> values) {
|
|
|
+ addCriterion("member_nickname not in", values, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameBetween(String value1, String value2) {
|
|
|
+ addCriterion("member_nickname between", value1, value2, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMemberNicknameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("member_nickname not between", value1, value2, "memberNickname");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIsNull() {
|
|
|
+ addCriterion("create_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIsNotNull() {
|
|
|
+ addCriterion("create_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateEqualTo(Date value) {
|
|
|
+ addCriterion("create_date =", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("create_date <>", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateGreaterThan(Date value) {
|
|
|
+ addCriterion("create_date >", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_date >=", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateLessThan(Date value) {
|
|
|
+ addCriterion("create_date <", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("create_date <=", value, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateIn(List<Date> values) {
|
|
|
+ addCriterion("create_date in", values, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("create_date not in", values, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_date between", value1, value2, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreateDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("create_date not between", value1, value2, "createDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateIsNull() {
|
|
|
+ addCriterion("modify_date is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateIsNotNull() {
|
|
|
+ addCriterion("modify_date is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateEqualTo(Date value) {
|
|
|
+ addCriterion("modify_date =", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateNotEqualTo(Date value) {
|
|
|
+ addCriterion("modify_date <>", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateGreaterThan(Date value) {
|
|
|
+ addCriterion("modify_date >", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("modify_date >=", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateLessThan(Date value) {
|
|
|
+ addCriterion("modify_date <", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("modify_date <=", value, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateIn(List<Date> values) {
|
|
|
+ addCriterion("modify_date in", values, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateNotIn(List<Date> values) {
|
|
|
+ addCriterion("modify_date not in", values, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("modify_date between", value1, value2, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andModifyDateNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("modify_date not between", value1, value2, "modifyDate");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusIsNull() {
|
|
|
+ addCriterion("delete_status is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusIsNotNull() {
|
|
|
+ addCriterion("delete_status is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusEqualTo(Integer value) {
|
|
|
+ addCriterion("delete_status =", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusNotEqualTo(Integer value) {
|
|
|
+ addCriterion("delete_status <>", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusGreaterThan(Integer value) {
|
|
|
+ addCriterion("delete_status >", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("delete_status >=", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusLessThan(Integer value) {
|
|
|
+ addCriterion("delete_status <", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("delete_status <=", value, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusIn(List<Integer> values) {
|
|
|
+ addCriterion("delete_status in", values, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusNotIn(List<Integer> values) {
|
|
|
+ addCriterion("delete_status not in", values, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("delete_status between", value1, value2, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andDeleteStatusNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("delete_status not between", value1, value2, "deleteStatus");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdIsNull() {
|
|
|
+ addCriterion("product_category_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdIsNotNull() {
|
|
|
+ addCriterion("product_category_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdEqualTo(Long value) {
|
|
|
+ addCriterion("product_category_id =", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdNotEqualTo(Long value) {
|
|
|
+ addCriterion("product_category_id <>", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdGreaterThan(Long value) {
|
|
|
+ addCriterion("product_category_id >", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_category_id >=", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdLessThan(Long value) {
|
|
|
+ addCriterion("product_category_id <", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("product_category_id <=", value, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdIn(List<Long> values) {
|
|
|
+ addCriterion("product_category_id in", values, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdNotIn(List<Long> values) {
|
|
|
+ addCriterion("product_category_id not in", values, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_category_id between", value1, value2, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductCategoryIdNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("product_category_id not between", value1, value2, "productCategoryId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandIsNull() {
|
|
|
+ addCriterion("product_brand is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandIsNotNull() {
|
|
|
+ addCriterion("product_brand is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandEqualTo(String value) {
|
|
|
+ addCriterion("product_brand =", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandNotEqualTo(String value) {
|
|
|
+ addCriterion("product_brand <>", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandGreaterThan(String value) {
|
|
|
+ addCriterion("product_brand >", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_brand >=", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandLessThan(String value) {
|
|
|
+ addCriterion("product_brand <", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_brand <=", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandLike(String value) {
|
|
|
+ addCriterion("product_brand like", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandNotLike(String value) {
|
|
|
+ addCriterion("product_brand not like", value, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandIn(List<String> values) {
|
|
|
+ addCriterion("product_brand in", values, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandNotIn(List<String> values) {
|
|
|
+ addCriterion("product_brand not in", values, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_brand between", value1, value2, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductBrandNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_brand not between", value1, value2, "productBrand");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnIsNull() {
|
|
|
+ addCriterion("product_sn is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnIsNotNull() {
|
|
|
+ addCriterion("product_sn is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnEqualTo(String value) {
|
|
|
+ addCriterion("product_sn =", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnNotEqualTo(String value) {
|
|
|
+ addCriterion("product_sn <>", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnGreaterThan(String value) {
|
|
|
+ addCriterion("product_sn >", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sn >=", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnLessThan(String value) {
|
|
|
+ addCriterion("product_sn <", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_sn <=", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnLike(String value) {
|
|
|
+ addCriterion("product_sn like", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnNotLike(String value) {
|
|
|
+ addCriterion("product_sn not like", value, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnIn(List<String> values) {
|
|
|
+ addCriterion("product_sn in", values, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnNotIn(List<String> values) {
|
|
|
+ addCriterion("product_sn not in", values, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sn between", value1, value2, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductSnNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_sn not between", value1, value2, "productSn");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrIsNull() {
|
|
|
+ addCriterion("product_attr is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrIsNotNull() {
|
|
|
+ addCriterion("product_attr is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrEqualTo(String value) {
|
|
|
+ addCriterion("product_attr =", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrNotEqualTo(String value) {
|
|
|
+ addCriterion("product_attr <>", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrGreaterThan(String value) {
|
|
|
+ addCriterion("product_attr >", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_attr >=", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrLessThan(String value) {
|
|
|
+ addCriterion("product_attr <", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("product_attr <=", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrLike(String value) {
|
|
|
+ addCriterion("product_attr like", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrNotLike(String value) {
|
|
|
+ addCriterion("product_attr not like", value, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrIn(List<String> values) {
|
|
|
+ addCriterion("product_attr in", values, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrNotIn(List<String> values) {
|
|
|
+ addCriterion("product_attr not in", values, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_attr between", value1, value2, "productAttr");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProductAttrNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("product_attr not between", value1, value2, "productAttr");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|