package com.jsh.erp.datasource.entities;
|
|
import java.math.BigDecimal;
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class AccountHeadExample {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public AccountHeadExample() {
|
oredCriteria = new ArrayList<>();
|
}
|
|
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<>();
|
}
|
|
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 andTypeIsNull() {
|
addCriterion("type is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeIsNotNull() {
|
addCriterion("type is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeEqualTo(String value) {
|
addCriterion("type =", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotEqualTo(String value) {
|
addCriterion("type <>", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeGreaterThan(String value) {
|
addCriterion("type >", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeGreaterThanOrEqualTo(String value) {
|
addCriterion("type >=", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLessThan(String value) {
|
addCriterion("type <", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLessThanOrEqualTo(String value) {
|
addCriterion("type <=", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLike(String value) {
|
addCriterion("type like", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotLike(String value) {
|
addCriterion("type not like", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeIn(List<String> values) {
|
addCriterion("type in", values, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotIn(List<String> values) {
|
addCriterion("type not in", values, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeBetween(String value1, String value2) {
|
addCriterion("type between", value1, value2, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotBetween(String value1, String value2) {
|
addCriterion("type not between", value1, value2, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdIsNull() {
|
addCriterion("organ_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdIsNotNull() {
|
addCriterion("organ_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdEqualTo(Long value) {
|
addCriterion("organ_id =", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdNotEqualTo(Long value) {
|
addCriterion("organ_id <>", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdGreaterThan(Long value) {
|
addCriterion("organ_id >", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("organ_id >=", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdLessThan(Long value) {
|
addCriterion("organ_id <", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdLessThanOrEqualTo(Long value) {
|
addCriterion("organ_id <=", value, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdIn(List<Long> values) {
|
addCriterion("organ_id in", values, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdNotIn(List<Long> values) {
|
addCriterion("organ_id not in", values, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdBetween(Long value1, Long value2) {
|
addCriterion("organ_id between", value1, value2, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOrganIdNotBetween(Long value1, Long value2) {
|
addCriterion("organ_id not between", value1, value2, "organId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdIsNull() {
|
addCriterion("hands_person_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdIsNotNull() {
|
addCriterion("hands_person_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdEqualTo(Long value) {
|
addCriterion("hands_person_id =", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdNotEqualTo(Long value) {
|
addCriterion("hands_person_id <>", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdGreaterThan(Long value) {
|
addCriterion("hands_person_id >", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("hands_person_id >=", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdLessThan(Long value) {
|
addCriterion("hands_person_id <", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdLessThanOrEqualTo(Long value) {
|
addCriterion("hands_person_id <=", value, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdIn(List<Long> values) {
|
addCriterion("hands_person_id in", values, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdNotIn(List<Long> values) {
|
addCriterion("hands_person_id not in", values, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdBetween(Long value1, Long value2) {
|
addCriterion("hands_person_id between", value1, value2, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andHandsPersonIdNotBetween(Long value1, Long value2) {
|
addCriterion("hands_person_id not between", value1, value2, "handsPersonId");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNull() {
|
addCriterion("creator is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNotNull() {
|
addCriterion("creator is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorEqualTo(Long value) {
|
addCriterion("creator =", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotEqualTo(Long value) {
|
addCriterion("creator <>", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThan(Long value) {
|
addCriterion("creator >", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThanOrEqualTo(Long value) {
|
addCriterion("creator >=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThan(Long value) {
|
addCriterion("creator <", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThanOrEqualTo(Long value) {
|
addCriterion("creator <=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIn(List<Long> values) {
|
addCriterion("creator in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotIn(List<Long> values) {
|
addCriterion("creator not in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorBetween(Long value1, Long value2) {
|
addCriterion("creator between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotBetween(Long value1, Long value2) {
|
addCriterion("creator not between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountIsNull() {
|
addCriterion("change_amount is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountIsNotNull() {
|
addCriterion("change_amount is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountEqualTo(BigDecimal value) {
|
addCriterion("change_amount =", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountNotEqualTo(BigDecimal value) {
|
addCriterion("change_amount <>", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountGreaterThan(BigDecimal value) {
|
addCriterion("change_amount >", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountGreaterThanOrEqualTo(BigDecimal value) {
|
addCriterion("change_amount >=", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountLessThan(BigDecimal value) {
|
addCriterion("change_amount <", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountLessThanOrEqualTo(BigDecimal value) {
|
addCriterion("change_amount <=", value, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountIn(List<BigDecimal> values) {
|
addCriterion("change_amount in", values, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountNotIn(List<BigDecimal> values) {
|
addCriterion("change_amount not in", values, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("change_amount between", value1, value2, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andChangeAmountNotBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("change_amount not between", value1, value2, "changeAmount");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyIsNull() {
|
addCriterion("discount_money is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyIsNotNull() {
|
addCriterion("discount_money is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyEqualTo(BigDecimal value) {
|
addCriterion("discount_money =", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyNotEqualTo(BigDecimal value) {
|
addCriterion("discount_money <>", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyGreaterThan(BigDecimal value) {
|
addCriterion("discount_money >", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyGreaterThanOrEqualTo(BigDecimal value) {
|
addCriterion("discount_money >=", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyLessThan(BigDecimal value) {
|
addCriterion("discount_money <", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyLessThanOrEqualTo(BigDecimal value) {
|
addCriterion("discount_money <=", value, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyIn(List<BigDecimal> values) {
|
addCriterion("discount_money in", values, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyNotIn(List<BigDecimal> values) {
|
addCriterion("discount_money not in", values, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("discount_money between", value1, value2, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andDiscountMoneyNotBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("discount_money not between", value1, value2, "discountMoney");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceIsNull() {
|
addCriterion("total_price is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceIsNotNull() {
|
addCriterion("total_price is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceEqualTo(BigDecimal value) {
|
addCriterion("total_price =", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceNotEqualTo(BigDecimal value) {
|
addCriterion("total_price <>", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceGreaterThan(BigDecimal value) {
|
addCriterion("total_price >", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceGreaterThanOrEqualTo(BigDecimal value) {
|
addCriterion("total_price >=", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceLessThan(BigDecimal value) {
|
addCriterion("total_price <", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceLessThanOrEqualTo(BigDecimal value) {
|
addCriterion("total_price <=", value, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceIn(List<BigDecimal> values) {
|
addCriterion("total_price in", values, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceNotIn(List<BigDecimal> values) {
|
addCriterion("total_price not in", values, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("total_price between", value1, value2, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andTotalPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
addCriterion("total_price not between", value1, value2, "totalPrice");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdIsNull() {
|
addCriterion("account_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdIsNotNull() {
|
addCriterion("account_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdEqualTo(Long value) {
|
addCriterion("account_id =", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdNotEqualTo(Long value) {
|
addCriterion("account_id <>", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdGreaterThan(Long value) {
|
addCriterion("account_id >", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("account_id >=", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdLessThan(Long value) {
|
addCriterion("account_id <", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdLessThanOrEqualTo(Long value) {
|
addCriterion("account_id <=", value, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdIn(List<Long> values) {
|
addCriterion("account_id in", values, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdNotIn(List<Long> values) {
|
addCriterion("account_id not in", values, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdBetween(Long value1, Long value2) {
|
addCriterion("account_id between", value1, value2, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andAccountIdNotBetween(Long value1, Long value2) {
|
addCriterion("account_id not between", value1, value2, "accountId");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoIsNull() {
|
addCriterion("bill_no is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoIsNotNull() {
|
addCriterion("bill_no is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoEqualTo(String value) {
|
addCriterion("bill_no =", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoNotEqualTo(String value) {
|
addCriterion("bill_no <>", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoGreaterThan(String value) {
|
addCriterion("bill_no >", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoGreaterThanOrEqualTo(String value) {
|
addCriterion("bill_no >=", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoLessThan(String value) {
|
addCriterion("bill_no <", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoLessThanOrEqualTo(String value) {
|
addCriterion("bill_no <=", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoLike(String value) {
|
addCriterion("bill_no like", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoNotLike(String value) {
|
addCriterion("bill_no not like", value, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoIn(List<String> values) {
|
addCriterion("bill_no in", values, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoNotIn(List<String> values) {
|
addCriterion("bill_no not in", values, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoBetween(String value1, String value2) {
|
addCriterion("bill_no between", value1, value2, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillNoNotBetween(String value1, String value2) {
|
addCriterion("bill_no not between", value1, value2, "billNo");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeIsNull() {
|
addCriterion("bill_time is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeIsNotNull() {
|
addCriterion("bill_time is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeEqualTo(Date value) {
|
addCriterion("bill_time =", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeNotEqualTo(Date value) {
|
addCriterion("bill_time <>", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeGreaterThan(Date value) {
|
addCriterion("bill_time >", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("bill_time >=", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeLessThan(Date value) {
|
addCriterion("bill_time <", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeLessThanOrEqualTo(Date value) {
|
addCriterion("bill_time <=", value, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeIn(List<Date> values) {
|
addCriterion("bill_time in", values, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeNotIn(List<Date> values) {
|
addCriterion("bill_time not in", values, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeBetween(Date value1, Date value2) {
|
addCriterion("bill_time between", value1, value2, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andBillTimeNotBetween(Date value1, Date value2) {
|
addCriterion("bill_time not between", value1, value2, "billTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIsNull() {
|
addCriterion("remark is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIsNotNull() {
|
addCriterion("remark is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkEqualTo(String value) {
|
addCriterion("remark =", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotEqualTo(String value) {
|
addCriterion("remark <>", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkGreaterThan(String value) {
|
addCriterion("remark >", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
addCriterion("remark >=", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLessThan(String value) {
|
addCriterion("remark <", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
addCriterion("remark <=", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLike(String value) {
|
addCriterion("remark like", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotLike(String value) {
|
addCriterion("remark not like", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIn(List<String> values) {
|
addCriterion("remark in", values, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotIn(List<String> values) {
|
addCriterion("remark not in", values, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkBetween(String value1, String value2) {
|
addCriterion("remark between", value1, value2, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotBetween(String value1, String value2) {
|
addCriterion("remark not between", value1, value2, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameIsNull() {
|
addCriterion("file_name is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameIsNotNull() {
|
addCriterion("file_name is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameEqualTo(String value) {
|
addCriterion("file_name =", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameNotEqualTo(String value) {
|
addCriterion("file_name <>", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameGreaterThan(String value) {
|
addCriterion("file_name >", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameGreaterThanOrEqualTo(String value) {
|
addCriterion("file_name >=", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameLessThan(String value) {
|
addCriterion("file_name <", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameLessThanOrEqualTo(String value) {
|
addCriterion("file_name <=", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameLike(String value) {
|
addCriterion("file_name like", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameNotLike(String value) {
|
addCriterion("file_name not like", value, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameIn(List<String> values) {
|
addCriterion("file_name in", values, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameNotIn(List<String> values) {
|
addCriterion("file_name not in", values, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameBetween(String value1, String value2) {
|
addCriterion("file_name between", value1, value2, "fileName");
|
return (Criteria) this;
|
}
|
|
public Criteria andFileNameNotBetween(String value1, String value2) {
|
addCriterion("file_name not between", value1, value2, "fileName");
|
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(String value) {
|
addCriterion("status =", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusNotEqualTo(String value) {
|
addCriterion("status <>", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusGreaterThan(String value) {
|
addCriterion("status >", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusGreaterThanOrEqualTo(String value) {
|
addCriterion("status >=", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusLessThan(String value) {
|
addCriterion("status <", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusLessThanOrEqualTo(String value) {
|
addCriterion("status <=", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusLike(String value) {
|
addCriterion("status like", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusNotLike(String value) {
|
addCriterion("status not like", value, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusIn(List<String> values) {
|
addCriterion("status in", values, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusNotIn(List<String> values) {
|
addCriterion("status not in", values, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusBetween(String value1, String value2) {
|
addCriterion("status between", value1, value2, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andStatusNotBetween(String value1, String value2) {
|
addCriterion("status not between", value1, value2, "status");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceIsNull() {
|
addCriterion("source is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceIsNotNull() {
|
addCriterion("source is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceEqualTo(String value) {
|
addCriterion("source =", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceNotEqualTo(String value) {
|
addCriterion("source <>", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceGreaterThan(String value) {
|
addCriterion("source >", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceGreaterThanOrEqualTo(String value) {
|
addCriterion("source >=", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceLessThan(String value) {
|
addCriterion("source <", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceLessThanOrEqualTo(String value) {
|
addCriterion("source <=", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceLike(String value) {
|
addCriterion("source like", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceNotLike(String value) {
|
addCriterion("source not like", value, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceIn(List<String> values) {
|
addCriterion("source in", values, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceNotIn(List<String> values) {
|
addCriterion("source not in", values, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceBetween(String value1, String value2) {
|
addCriterion("source between", value1, value2, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andSourceNotBetween(String value1, String value2) {
|
addCriterion("source not between", value1, value2, "source");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIsNull() {
|
addCriterion("tenant_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIsNotNull() {
|
addCriterion("tenant_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdEqualTo(Long value) {
|
addCriterion("tenant_id =", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotEqualTo(Long value) {
|
addCriterion("tenant_id <>", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdGreaterThan(Long value) {
|
addCriterion("tenant_id >", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("tenant_id >=", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdLessThan(Long value) {
|
addCriterion("tenant_id <", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdLessThanOrEqualTo(Long value) {
|
addCriterion("tenant_id <=", value, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdIn(List<Long> values) {
|
addCriterion("tenant_id in", values, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotIn(List<Long> values) {
|
addCriterion("tenant_id not in", values, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdBetween(Long value1, Long value2) {
|
addCriterion("tenant_id between", value1, value2, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andTenantIdNotBetween(Long value1, Long value2) {
|
addCriterion("tenant_id not between", value1, value2, "tenantId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIsNull() {
|
addCriterion("delete_flag is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIsNotNull() {
|
addCriterion("delete_flag is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagEqualTo(String value) {
|
addCriterion("delete_flag =", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotEqualTo(String value) {
|
addCriterion("delete_flag <>", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagGreaterThan(String value) {
|
addCriterion("delete_flag >", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagGreaterThanOrEqualTo(String value) {
|
addCriterion("delete_flag >=", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLessThan(String value) {
|
addCriterion("delete_flag <", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLessThanOrEqualTo(String value) {
|
addCriterion("delete_flag <=", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagLike(String value) {
|
addCriterion("delete_flag like", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotLike(String value) {
|
addCriterion("delete_flag not like", value, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagIn(List<String> values) {
|
addCriterion("delete_flag in", values, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotIn(List<String> values) {
|
addCriterion("delete_flag not in", values, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagBetween(String value1, String value2) {
|
addCriterion("delete_flag between", value1, value2, "deleteFlag");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeleteFlagNotBetween(String value1, String value2) {
|
addCriterion("delete_flag not between", value1, value2, "deleteFlag");
|
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);
|
}
|
}
|
}
|