|
@@ -0,0 +1,591 @@
|
|
|
|
+package cn.kdan.cloud.pdf.office.account.model;
|
|
|
|
+
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
+import java.util.Date;
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+public class UserSubscriptionInfoExample {
|
|
|
|
+ protected String orderByClause;
|
|
|
|
+
|
|
|
|
+ protected boolean distinct;
|
|
|
|
+
|
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
|
+
|
|
|
|
+ public UserSubscriptionInfoExample() {
|
|
|
|
+ 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(String value) {
|
|
|
|
+ addCriterion("id =", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdNotEqualTo(String value) {
|
|
|
|
+ addCriterion("id <>", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdGreaterThan(String value) {
|
|
|
|
+ addCriterion("id >", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("id >=", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdLessThan(String value) {
|
|
|
|
+ addCriterion("id <", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("id <=", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdLike(String value) {
|
|
|
|
+ addCriterion("id like", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdNotLike(String value) {
|
|
|
|
+ addCriterion("id not like", value, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdIn(List<String> values) {
|
|
|
|
+ addCriterion("id in", values, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdNotIn(List<String> values) {
|
|
|
|
+ addCriterion("id not in", values, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdIsNull() {
|
|
|
|
+ addCriterion("user_id is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdIsNotNull() {
|
|
|
|
+ addCriterion("user_id is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdEqualTo(String value) {
|
|
|
|
+ addCriterion("user_id =", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdNotEqualTo(String value) {
|
|
|
|
+ addCriterion("user_id <>", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdGreaterThan(String value) {
|
|
|
|
+ addCriterion("user_id >", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdGreaterThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("user_id >=", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdLessThan(String value) {
|
|
|
|
+ addCriterion("user_id <", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdLessThanOrEqualTo(String value) {
|
|
|
|
+ addCriterion("user_id <=", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdLike(String value) {
|
|
|
|
+ addCriterion("user_id like", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdNotLike(String value) {
|
|
|
|
+ addCriterion("user_id not like", value, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdIn(List<String> values) {
|
|
|
|
+ addCriterion("user_id in", values, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdNotIn(List<String> values) {
|
|
|
|
+ addCriterion("user_id not in", values, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("user_id between", value1, value2, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdNotBetween(String value1, String value2) {
|
|
|
|
+ addCriterion("user_id not between", value1, value2, "userId");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformIsNull() {
|
|
|
|
+ addCriterion("platform is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformIsNotNull() {
|
|
|
|
+ addCriterion("platform is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformEqualTo(Integer value) {
|
|
|
|
+ addCriterion("platform =", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("platform <>", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("platform >", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("platform >=", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformLessThan(Integer value) {
|
|
|
|
+ addCriterion("platform <", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("platform <=", value, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformIn(List<Integer> values) {
|
|
|
|
+ addCriterion("platform in", values, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("platform not in", values, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("platform between", value1, value2, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPlatformNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("platform not between", value1, value2, "platform");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIsNull() {
|
|
|
|
+ addCriterion("`status` is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIsNotNull() {
|
|
|
|
+ addCriterion("`status` is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusEqualTo(Integer value) {
|
|
|
|
+ addCriterion("`status` =", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("`status` <>", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("`status` >", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("`status` >=", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusLessThan(Integer value) {
|
|
|
|
+ addCriterion("`status` <", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("`status` <=", value, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusIn(List<Integer> values) {
|
|
|
|
+ addCriterion("`status` in", values, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("`status` not in", values, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("`status` between", value1, value2, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("`status` not between", value1, value2, "status");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateIsNull() {
|
|
|
|
+ addCriterion("end_date is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateIsNotNull() {
|
|
|
|
+ addCriterion("end_date is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateEqualTo(Date value) {
|
|
|
|
+ addCriterion("end_date =", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateNotEqualTo(Date value) {
|
|
|
|
+ addCriterion("end_date <>", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateGreaterThan(Date value) {
|
|
|
|
+ addCriterion("end_date >", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateGreaterThanOrEqualTo(Date value) {
|
|
|
|
+ addCriterion("end_date >=", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateLessThan(Date value) {
|
|
|
|
+ addCriterion("end_date <", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateLessThanOrEqualTo(Date value) {
|
|
|
|
+ addCriterion("end_date <=", value, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateIn(List<Date> values) {
|
|
|
|
+ addCriterion("end_date in", values, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateNotIn(List<Date> values) {
|
|
|
|
+ addCriterion("end_date not in", values, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateBetween(Date value1, Date value2) {
|
|
|
|
+ addCriterion("end_date between", value1, value2, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andEndDateNotBetween(Date value1, Date value2) {
|
|
|
|
+ addCriterion("end_date not between", value1, value2, "endDate");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeIsNull() {
|
|
|
|
+ addCriterion("pay_type is null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeIsNotNull() {
|
|
|
|
+ addCriterion("pay_type is not null");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeEqualTo(Integer value) {
|
|
|
|
+ addCriterion("pay_type =", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeNotEqualTo(Integer value) {
|
|
|
|
+ addCriterion("pay_type <>", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeGreaterThan(Integer value) {
|
|
|
|
+ addCriterion("pay_type >", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("pay_type >=", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeLessThan(Integer value) {
|
|
|
|
+ addCriterion("pay_type <", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeLessThanOrEqualTo(Integer value) {
|
|
|
|
+ addCriterion("pay_type <=", value, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeIn(List<Integer> values) {
|
|
|
|
+ addCriterion("pay_type in", values, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeNotIn(List<Integer> values) {
|
|
|
|
+ addCriterion("pay_type not in", values, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("pay_type between", value1, value2, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andPayTypeNotBetween(Integer value1, Integer value2) {
|
|
|
|
+ addCriterion("pay_type not between", value1, value2, "payType");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andIdLikeInsensitive(String value) {
|
|
|
|
+ addCriterion("upper(id) like", value.toUpperCase(), "id");
|
|
|
|
+ return (Criteria) this;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Criteria andUserIdLikeInsensitive(String value) {
|
|
|
|
+ addCriterion("upper(user_id) like", value.toUpperCase(), "userId");
|
|
|
|
+ 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);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|