|
@@ -0,0 +1,992 @@
|
|
|
+package com.idea.paymentManagement.model;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+public class MaintenanceFundsManagementExample {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public MaintenanceFundsManagementExample() {
|
|
|
+ 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 andContractIdIsNull() {
|
|
|
+ addCriterion("contract_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdIsNotNull() {
|
|
|
+ addCriterion("contract_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdEqualTo(String value) {
|
|
|
+ addCriterion("contract_id =", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdNotEqualTo(String value) {
|
|
|
+ addCriterion("contract_id <>", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdGreaterThan(String value) {
|
|
|
+ addCriterion("contract_id >", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("contract_id >=", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdLessThan(String value) {
|
|
|
+ addCriterion("contract_id <", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("contract_id <=", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdLike(String value) {
|
|
|
+ addCriterion("contract_id like", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdNotLike(String value) {
|
|
|
+ addCriterion("contract_id not like", value, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdIn(List<String> values) {
|
|
|
+ addCriterion("contract_id in", values, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdNotIn(List<String> values) {
|
|
|
+ addCriterion("contract_id not in", values, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("contract_id between", value1, value2, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andContractIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("contract_id not between", value1, value2, "contractId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodIsNull() {
|
|
|
+ addCriterion("payment_method is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodIsNotNull() {
|
|
|
+ addCriterion("payment_method is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodEqualTo(Integer value) {
|
|
|
+ addCriterion("payment_method =", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodNotEqualTo(Integer value) {
|
|
|
+ addCriterion("payment_method <>", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodGreaterThan(Integer value) {
|
|
|
+ addCriterion("payment_method >", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("payment_method >=", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodLessThan(Integer value) {
|
|
|
+ addCriterion("payment_method <", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("payment_method <=", value, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodIn(List<Integer> values) {
|
|
|
+ addCriterion("payment_method in", values, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodNotIn(List<Integer> values) {
|
|
|
+ addCriterion("payment_method not in", values, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("payment_method between", value1, value2, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPaymentMethodNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("payment_method not between", value1, value2, "paymentMethod");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeIsNull() {
|
|
|
+ addCriterion("pay_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeIsNotNull() {
|
|
|
+ addCriterion("pay_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeEqualTo(Date value) {
|
|
|
+ addCriterion("pay_time =", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("pay_time <>", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("pay_time >", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("pay_time >=", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeLessThan(Date value) {
|
|
|
+ addCriterion("pay_time <", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("pay_time <=", value, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeIn(List<Date> values) {
|
|
|
+ addCriterion("pay_time in", values, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("pay_time not in", values, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("pay_time between", value1, value2, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("pay_time not between", value1, value2, "payTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameIsNull() {
|
|
|
+ addCriterion("bank_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameIsNotNull() {
|
|
|
+ addCriterion("bank_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameEqualTo(String value) {
|
|
|
+ addCriterion("bank_name =", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameNotEqualTo(String value) {
|
|
|
+ addCriterion("bank_name <>", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameGreaterThan(String value) {
|
|
|
+ addCriterion("bank_name >", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_name >=", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameLessThan(String value) {
|
|
|
+ addCriterion("bank_name <", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_name <=", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameLike(String value) {
|
|
|
+ addCriterion("bank_name like", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameNotLike(String value) {
|
|
|
+ addCriterion("bank_name not like", value, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameIn(List<String> values) {
|
|
|
+ addCriterion("bank_name in", values, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameNotIn(List<String> values) {
|
|
|
+ addCriterion("bank_name not in", values, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_name between", value1, value2, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_name not between", value1, value2, "bankName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameIsNull() {
|
|
|
+ addCriterion("bank_branch_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameIsNotNull() {
|
|
|
+ addCriterion("bank_branch_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameEqualTo(String value) {
|
|
|
+ addCriterion("bank_branch_name =", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameNotEqualTo(String value) {
|
|
|
+ addCriterion("bank_branch_name <>", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameGreaterThan(String value) {
|
|
|
+ addCriterion("bank_branch_name >", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_branch_name >=", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameLessThan(String value) {
|
|
|
+ addCriterion("bank_branch_name <", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_branch_name <=", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameLike(String value) {
|
|
|
+ addCriterion("bank_branch_name like", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameNotLike(String value) {
|
|
|
+ addCriterion("bank_branch_name not like", value, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameIn(List<String> values) {
|
|
|
+ addCriterion("bank_branch_name in", values, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameNotIn(List<String> values) {
|
|
|
+ addCriterion("bank_branch_name not in", values, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_branch_name between", value1, value2, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankBranchNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_branch_name not between", value1, value2, "bankBranchName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberIsNull() {
|
|
|
+ addCriterion("bank_number is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberIsNotNull() {
|
|
|
+ addCriterion("bank_number is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberEqualTo(String value) {
|
|
|
+ addCriterion("bank_number =", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberNotEqualTo(String value) {
|
|
|
+ addCriterion("bank_number <>", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberGreaterThan(String value) {
|
|
|
+ addCriterion("bank_number >", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_number >=", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberLessThan(String value) {
|
|
|
+ addCriterion("bank_number <", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("bank_number <=", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberLike(String value) {
|
|
|
+ addCriterion("bank_number like", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberNotLike(String value) {
|
|
|
+ addCriterion("bank_number not like", value, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberIn(List<String> values) {
|
|
|
+ addCriterion("bank_number in", values, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberNotIn(List<String> values) {
|
|
|
+ addCriterion("bank_number not in", values, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_number between", value1, value2, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andBankNumberNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("bank_number not between", value1, value2, "bankNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyIsNull() {
|
|
|
+ addCriterion("pay_money is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyIsNotNull() {
|
|
|
+ addCriterion("pay_money is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("pay_money =", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyNotEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("pay_money <>", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyGreaterThan(BigDecimal value) {
|
|
|
+ addCriterion("pay_money >", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyGreaterThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("pay_money >=", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyLessThan(BigDecimal value) {
|
|
|
+ addCriterion("pay_money <", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyLessThanOrEqualTo(BigDecimal value) {
|
|
|
+ addCriterion("pay_money <=", value, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("pay_money in", values, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyNotIn(List<BigDecimal> values) {
|
|
|
+ addCriterion("pay_money not in", values, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("pay_money between", value1, value2, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPayMoneyNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
|
+ addCriterion("pay_money not between", value1, value2, "payMoney");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdIsNull() {
|
|
|
+ addCriterion("created_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdIsNotNull() {
|
|
|
+ addCriterion("created_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdEqualTo(String value) {
|
|
|
+ addCriterion("created_id =", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdNotEqualTo(String value) {
|
|
|
+ addCriterion("created_id <>", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdGreaterThan(String value) {
|
|
|
+ addCriterion("created_id >", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_id >=", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdLessThan(String value) {
|
|
|
+ addCriterion("created_id <", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_id <=", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdLike(String value) {
|
|
|
+ addCriterion("created_id like", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdNotLike(String value) {
|
|
|
+ addCriterion("created_id not like", value, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdIn(List<String> values) {
|
|
|
+ addCriterion("created_id in", values, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdNotIn(List<String> values) {
|
|
|
+ addCriterion("created_id not in", values, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_id between", value1, value2, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_id not between", value1, value2, "createdId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtIsNull() {
|
|
|
+ addCriterion("created_at is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtIsNotNull() {
|
|
|
+ addCriterion("created_at is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtEqualTo(Date value) {
|
|
|
+ addCriterion("created_at =", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtNotEqualTo(Date value) {
|
|
|
+ addCriterion("created_at <>", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtGreaterThan(Date value) {
|
|
|
+ addCriterion("created_at >", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("created_at >=", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtLessThan(Date value) {
|
|
|
+ addCriterion("created_at <", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("created_at <=", value, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtIn(List<Date> values) {
|
|
|
+ addCriterion("created_at in", values, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtNotIn(List<Date> values) {
|
|
|
+ addCriterion("created_at not in", values, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("created_at between", value1, value2, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedAtNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("created_at not between", value1, value2, "createdAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtIsNull() {
|
|
|
+ addCriterion("updated_at is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtIsNotNull() {
|
|
|
+ addCriterion("updated_at is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtEqualTo(Date value) {
|
|
|
+ addCriterion("updated_at =", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtNotEqualTo(Date value) {
|
|
|
+ addCriterion("updated_at <>", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtGreaterThan(Date value) {
|
|
|
+ addCriterion("updated_at >", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updated_at >=", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtLessThan(Date value) {
|
|
|
+ addCriterion("updated_at <", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("updated_at <=", value, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtIn(List<Date> values) {
|
|
|
+ addCriterion("updated_at in", values, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtNotIn(List<Date> values) {
|
|
|
+ addCriterion("updated_at not in", values, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updated_at between", value1, value2, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedAtNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("updated_at not between", value1, value2, "updatedAt");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdIsNull() {
|
|
|
+ addCriterion("updated_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdIsNotNull() {
|
|
|
+ addCriterion("updated_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdEqualTo(String value) {
|
|
|
+ addCriterion("updated_id =", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdNotEqualTo(String value) {
|
|
|
+ addCriterion("updated_id <>", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdGreaterThan(String value) {
|
|
|
+ addCriterion("updated_id >", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("updated_id >=", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdLessThan(String value) {
|
|
|
+ addCriterion("updated_id <", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("updated_id <=", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdLike(String value) {
|
|
|
+ addCriterion("updated_id like", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdNotLike(String value) {
|
|
|
+ addCriterion("updated_id not like", value, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdIn(List<String> values) {
|
|
|
+ addCriterion("updated_id in", values, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdNotIn(List<String> values) {
|
|
|
+ addCriterion("updated_id not in", values, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("updated_id between", value1, value2, "updatedId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdatedIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("updated_id not between", value1, value2, "updatedId");
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|