|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.sztzjy.block_finance.entity;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public class StuTransactionDocumentsInfoExample {
|
|
|
|
@ -554,63 +555,363 @@ public class StuTransactionDocumentsInfoExample {
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusIsNull() {
|
|
|
|
|
addCriterion("receive_status is null");
|
|
|
|
|
public Criteria andDiscountDisplayIsNull() {
|
|
|
|
|
addCriterion("discount_display is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusIsNotNull() {
|
|
|
|
|
addCriterion("receive_status is not null");
|
|
|
|
|
public Criteria andDiscountDisplayIsNotNull() {
|
|
|
|
|
addCriterion("discount_display is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusEqualTo(Integer value) {
|
|
|
|
|
addCriterion("receive_status =", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayEqualTo(Integer value) {
|
|
|
|
|
addCriterion("discount_display =", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("receive_status <>", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("discount_display <>", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("receive_status >", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("discount_display >", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("receive_status >=", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("discount_display >=", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusLessThan(Integer value) {
|
|
|
|
|
addCriterion("receive_status <", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayLessThan(Integer value) {
|
|
|
|
|
addCriterion("discount_display <", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("receive_status <=", value, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("discount_display <=", value, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusIn(List<Integer> values) {
|
|
|
|
|
addCriterion("receive_status in", values, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayIn(List<Integer> values) {
|
|
|
|
|
addCriterion("discount_display in", values, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("receive_status not in", values, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("discount_display not in", values, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("receive_status between", value1, value2, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("discount_display between", value1, value2, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andReceiveStatusNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("receive_status not between", value1, value2, "receiveStatus");
|
|
|
|
|
public Criteria andDiscountDisplayNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("discount_display not between", value1, value2, "discountDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayIsNull() {
|
|
|
|
|
addCriterion("supplier_display is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayIsNotNull() {
|
|
|
|
|
addCriterion("supplier_display is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayEqualTo(Integer value) {
|
|
|
|
|
addCriterion("supplier_display =", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("supplier_display <>", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("supplier_display >", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("supplier_display >=", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayLessThan(Integer value) {
|
|
|
|
|
addCriterion("supplier_display <", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("supplier_display <=", value, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayIn(List<Integer> values) {
|
|
|
|
|
addCriterion("supplier_display in", values, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("supplier_display not in", values, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("supplier_display between", value1, value2, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andSupplierDisplayNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("supplier_display not between", value1, value2, "supplierDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayIsNull() {
|
|
|
|
|
addCriterion("core_enterprise_display is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayIsNotNull() {
|
|
|
|
|
addCriterion("core_enterprise_display is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display =", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display <>", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display >", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display >=", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayLessThan(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display <", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_display <=", value, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayIn(List<Integer> values) {
|
|
|
|
|
addCriterion("core_enterprise_display in", values, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("core_enterprise_display not in", values, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("core_enterprise_display between", value1, value2, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseDisplayNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("core_enterprise_display not between", value1, value2, "coreEnterpriseDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusIsNull() {
|
|
|
|
|
addCriterion("core_enterprise_receive_status is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusIsNotNull() {
|
|
|
|
|
addCriterion("core_enterprise_receive_status is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status =", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status <>", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status >", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status >=", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusLessThan(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status <", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status <=", value, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusIn(List<Integer> values) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status in", values, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status not in", values, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status between", value1, value2, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCoreEnterpriseReceiveStatusNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("core_enterprise_receive_status not between", value1, value2, "coreEnterpriseReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayIsNull() {
|
|
|
|
|
addCriterion("factoring_company_display is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayIsNotNull() {
|
|
|
|
|
addCriterion("factoring_company_display is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayEqualTo(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display =", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display <>", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display >", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display >=", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayLessThan(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display <", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("factoring_company_display <=", value, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayIn(List<Integer> values) {
|
|
|
|
|
addCriterion("factoring_company_display in", values, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("factoring_company_display not in", values, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("factoring_company_display between", value1, value2, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompanyDisplayNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("factoring_company_display not between", value1, value2, "factoringCompanyDisplay");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusIsNull() {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusIsNotNull() {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusEqualTo(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" =", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusNotEqualTo(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" <>", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusGreaterThan(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" >", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusGreaterThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" >=", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusLessThan(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" <", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusLessThanOrEqualTo(Integer value) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" <=", value, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusIn(List<Integer> values) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" in", values, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusNotIn(List<Integer> values) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" not in", values, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" between", value1, value2, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andFactoringCompaniesReceiveStatusNotBetween(Integer value1, Integer value2) {
|
|
|
|
|
addCriterion("\"factoring companies_receive_status\" not between", value1, value2, "factoringCompaniesReceiveStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -733,6 +1034,266 @@ public class StuTransactionDocumentsInfoExample {
|
|
|
|
|
addCriterion("\"download status\" not between", value1, value2, "downloadStatus");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeIsNull() {
|
|
|
|
|
addCriterion("create_time is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeIsNotNull() {
|
|
|
|
|
addCriterion("create_time is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeEqualTo(Date value) {
|
|
|
|
|
addCriterion("create_time =", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeNotEqualTo(Date value) {
|
|
|
|
|
addCriterion("create_time <>", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeGreaterThan(Date value) {
|
|
|
|
|
addCriterion("create_time >", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
|
|
addCriterion("create_time >=", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeLessThan(Date value) {
|
|
|
|
|
addCriterion("create_time <", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
|
|
|
|
|
addCriterion("create_time <=", value, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeIn(List<Date> values) {
|
|
|
|
|
addCriterion("create_time in", values, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeNotIn(List<Date> values) {
|
|
|
|
|
addCriterion("create_time not in", values, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeBetween(Date value1, Date value2) {
|
|
|
|
|
addCriterion("create_time between", value1, value2, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
|
|
|
|
|
addCriterion("create_time not between", value1, value2, "createTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeIsNull() {
|
|
|
|
|
addCriterion("update_time is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeIsNotNull() {
|
|
|
|
|
addCriterion("update_time is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeEqualTo(Date value) {
|
|
|
|
|
addCriterion("update_time =", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeNotEqualTo(Date value) {
|
|
|
|
|
addCriterion("update_time <>", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeGreaterThan(Date value) {
|
|
|
|
|
addCriterion("update_time >", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
|
|
|
|
addCriterion("update_time >=", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeLessThan(Date value) {
|
|
|
|
|
addCriterion("update_time <", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
|
|
|
|
addCriterion("update_time <=", value, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeIn(List<Date> values) {
|
|
|
|
|
addCriterion("update_time in", values, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeNotIn(List<Date> values) {
|
|
|
|
|
addCriterion("update_time not in", values, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
|
|
|
|
addCriterion("update_time between", value1, value2, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
|
|
|
|
addCriterion("update_time not between", value1, value2, "updateTime");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestIsNull() {
|
|
|
|
|
addCriterion("cryp_digest is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestIsNotNull() {
|
|
|
|
|
addCriterion("cryp_digest is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestEqualTo(String value) {
|
|
|
|
|
addCriterion("cryp_digest =", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestNotEqualTo(String value) {
|
|
|
|
|
addCriterion("cryp_digest <>", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestGreaterThan(String value) {
|
|
|
|
|
addCriterion("cryp_digest >", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestGreaterThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("cryp_digest >=", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestLessThan(String value) {
|
|
|
|
|
addCriterion("cryp_digest <", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestLessThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("cryp_digest <=", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestLike(String value) {
|
|
|
|
|
addCriterion("cryp_digest like", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestNotLike(String value) {
|
|
|
|
|
addCriterion("cryp_digest not like", value, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestIn(List<String> values) {
|
|
|
|
|
addCriterion("cryp_digest in", values, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestNotIn(List<String> values) {
|
|
|
|
|
addCriterion("cryp_digest not in", values, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("cryp_digest between", value1, value2, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andCrypDigestNotBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("cryp_digest not between", value1, value2, "crypDigest");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextIsNull() {
|
|
|
|
|
addCriterion("information_ciphertext is null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextIsNotNull() {
|
|
|
|
|
addCriterion("information_ciphertext is not null");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextEqualTo(String value) {
|
|
|
|
|
addCriterion("information_ciphertext =", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextNotEqualTo(String value) {
|
|
|
|
|
addCriterion("information_ciphertext <>", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextGreaterThan(String value) {
|
|
|
|
|
addCriterion("information_ciphertext >", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextGreaterThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("information_ciphertext >=", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextLessThan(String value) {
|
|
|
|
|
addCriterion("information_ciphertext <", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextLessThanOrEqualTo(String value) {
|
|
|
|
|
addCriterion("information_ciphertext <=", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextLike(String value) {
|
|
|
|
|
addCriterion("information_ciphertext like", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextNotLike(String value) {
|
|
|
|
|
addCriterion("information_ciphertext not like", value, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextIn(List<String> values) {
|
|
|
|
|
addCriterion("information_ciphertext in", values, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextNotIn(List<String> values) {
|
|
|
|
|
addCriterion("information_ciphertext not in", values, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("information_ciphertext between", value1, value2, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Criteria andInformationCiphertextNotBetween(String value1, String value2) {
|
|
|
|
|
addCriterion("information_ciphertext not between", value1, value2, "informationCiphertext");
|
|
|
|
|
return (Criteria) this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class Criteria extends GeneratedCriteria {
|
|
|
|
|