初始项目信息导入
This commit is contained in:
@@ -0,0 +1,660 @@
|
||||
package com.macro.mall.model;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class UmsMemberReceiveAddressExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public UmsMemberReceiveAddressExample() {
|
||||
oredCriteria = new ArrayList<Criteria>();
|
||||
}
|
||||
|
||||
public void setOrderByClause(String orderByClause) {
|
||||
this.orderByClause = orderByClause;
|
||||
}
|
||||
|
||||
public String getOrderByClause() {
|
||||
return orderByClause;
|
||||
}
|
||||
|
||||
public void setDistinct(boolean distinct) {
|
||||
this.distinct = distinct;
|
||||
}
|
||||
|
||||
public boolean isDistinct() {
|
||||
return distinct;
|
||||
}
|
||||
|
||||
public List<Criteria> getOredCriteria() {
|
||||
return oredCriteria;
|
||||
}
|
||||
|
||||
public void or(Criteria criteria) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
|
||||
public Criteria or() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
oredCriteria.add(criteria);
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public Criteria createCriteria() {
|
||||
Criteria criteria = createCriteriaInternal();
|
||||
if (oredCriteria.size() == 0) {
|
||||
oredCriteria.add(criteria);
|
||||
}
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected Criteria createCriteriaInternal() {
|
||||
Criteria criteria = new Criteria();
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public void clear() {
|
||||
oredCriteria.clear();
|
||||
orderByClause = null;
|
||||
distinct = false;
|
||||
}
|
||||
|
||||
protected abstract static class GeneratedCriteria {
|
||||
protected List<Criterion> criteria;
|
||||
|
||||
protected GeneratedCriteria() {
|
||||
super();
|
||||
criteria = new ArrayList<Criterion>();
|
||||
}
|
||||
|
||||
public boolean isValid() {
|
||||
return criteria.size() > 0;
|
||||
}
|
||||
|
||||
public List<Criterion> getAllCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
public List<Criterion> getCriteria() {
|
||||
return criteria;
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition) {
|
||||
if (condition == null) {
|
||||
throw new RuntimeException("Value for condition cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value, String property) {
|
||||
if (value == null) {
|
||||
throw new RuntimeException("Value for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value));
|
||||
}
|
||||
|
||||
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||||
if (value1 == null || value2 == null) {
|
||||
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||||
}
|
||||
criteria.add(new Criterion(condition, value1, value2));
|
||||
}
|
||||
|
||||
public Criteria andIdIsNull() {
|
||||
addCriterion("id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIsNotNull() {
|
||||
addCriterion("id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdEqualTo(Long value) {
|
||||
addCriterion("id =", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotEqualTo(Long value) {
|
||||
addCriterion("id <>", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThan(Long value) {
|
||||
addCriterion("id >", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("id >=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThan(Long value) {
|
||||
addCriterion("id <", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdLessThanOrEqualTo(Long value) {
|
||||
addCriterion("id <=", value, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdIn(List<Long> values) {
|
||||
addCriterion("id in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotIn(List<Long> values) {
|
||||
addCriterion("id not in", values, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdBetween(Long value1, Long value2) {
|
||||
addCriterion("id between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andIdNotBetween(Long value1, Long value2) {
|
||||
addCriterion("id not between", value1, value2, "id");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdIsNull() {
|
||||
addCriterion("member_id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdIsNotNull() {
|
||||
addCriterion("member_id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdEqualTo(Long value) {
|
||||
addCriterion("member_id =", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdNotEqualTo(Long value) {
|
||||
addCriterion("member_id <>", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdGreaterThan(Long value) {
|
||||
addCriterion("member_id >", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("member_id >=", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdLessThan(Long value) {
|
||||
addCriterion("member_id <", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdLessThanOrEqualTo(Long value) {
|
||||
addCriterion("member_id <=", value, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdIn(List<Long> values) {
|
||||
addCriterion("member_id in", values, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdNotIn(List<Long> values) {
|
||||
addCriterion("member_id not in", values, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdBetween(Long value1, Long value2) {
|
||||
addCriterion("member_id between", value1, value2, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andMemberIdNotBetween(Long value1, Long value2) {
|
||||
addCriterion("member_id not between", value1, value2, "memberId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameIsNull() {
|
||||
addCriterion("name is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameIsNotNull() {
|
||||
addCriterion("name is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameEqualTo(String value) {
|
||||
addCriterion("name =", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameNotEqualTo(String value) {
|
||||
addCriterion("name <>", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameGreaterThan(String value) {
|
||||
addCriterion("name >", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("name >=", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameLessThan(String value) {
|
||||
addCriterion("name <", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameLessThanOrEqualTo(String value) {
|
||||
addCriterion("name <=", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameLike(String value) {
|
||||
addCriterion("name like", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameNotLike(String value) {
|
||||
addCriterion("name not like", value, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameIn(List<String> values) {
|
||||
addCriterion("name in", values, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameNotIn(List<String> values) {
|
||||
addCriterion("name not in", values, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameBetween(String value1, String value2) {
|
||||
addCriterion("name between", value1, value2, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andNameNotBetween(String value1, String value2) {
|
||||
addCriterion("name not between", value1, value2, "name");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberIsNull() {
|
||||
addCriterion("phone_number is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberIsNotNull() {
|
||||
addCriterion("phone_number is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberEqualTo(String value) {
|
||||
addCriterion("phone_number =", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberNotEqualTo(String value) {
|
||||
addCriterion("phone_number <>", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberGreaterThan(String value) {
|
||||
addCriterion("phone_number >", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("phone_number >=", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberLessThan(String value) {
|
||||
addCriterion("phone_number <", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberLessThanOrEqualTo(String value) {
|
||||
addCriterion("phone_number <=", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberLike(String value) {
|
||||
addCriterion("phone_number like", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberNotLike(String value) {
|
||||
addCriterion("phone_number not like", value, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberIn(List<String> values) {
|
||||
addCriterion("phone_number in", values, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberNotIn(List<String> values) {
|
||||
addCriterion("phone_number not in", values, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberBetween(String value1, String value2) {
|
||||
addCriterion("phone_number between", value1, value2, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPhoneNumberNotBetween(String value1, String value2) {
|
||||
addCriterion("phone_number not between", value1, value2, "phoneNumber");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressIsNull() {
|
||||
addCriterion("address is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressIsNotNull() {
|
||||
addCriterion("address is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressEqualTo(String value) {
|
||||
addCriterion("address =", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressNotEqualTo(String value) {
|
||||
addCriterion("address <>", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressGreaterThan(String value) {
|
||||
addCriterion("address >", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("address >=", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressLessThan(String value) {
|
||||
addCriterion("address <", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressLessThanOrEqualTo(String value) {
|
||||
addCriterion("address <=", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressLike(String value) {
|
||||
addCriterion("address like", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressNotLike(String value) {
|
||||
addCriterion("address not like", value, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressIn(List<String> values) {
|
||||
addCriterion("address in", values, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressNotIn(List<String> values) {
|
||||
addCriterion("address not in", values, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressBetween(String value1, String value2) {
|
||||
addCriterion("address between", value1, value2, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andAddressNotBetween(String value1, String value2) {
|
||||
addCriterion("address not between", value1, value2, "address");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeIsNull() {
|
||||
addCriterion("post_code is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeIsNotNull() {
|
||||
addCriterion("post_code is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeEqualTo(String value) {
|
||||
addCriterion("post_code =", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeNotEqualTo(String value) {
|
||||
addCriterion("post_code <>", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeGreaterThan(String value) {
|
||||
addCriterion("post_code >", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("post_code >=", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeLessThan(String value) {
|
||||
addCriterion("post_code <", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeLessThanOrEqualTo(String value) {
|
||||
addCriterion("post_code <=", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeLike(String value) {
|
||||
addCriterion("post_code like", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeNotLike(String value) {
|
||||
addCriterion("post_code not like", value, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeIn(List<String> values) {
|
||||
addCriterion("post_code in", values, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeNotIn(List<String> values) {
|
||||
addCriterion("post_code not in", values, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeBetween(String value1, String value2) {
|
||||
addCriterion("post_code between", value1, value2, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPostCodeNotBetween(String value1, String value2) {
|
||||
addCriterion("post_code not between", value1, value2, "postCode");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusIsNull() {
|
||||
addCriterion("default_status is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusIsNotNull() {
|
||||
addCriterion("default_status is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusEqualTo(Integer value) {
|
||||
addCriterion("default_status =", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusNotEqualTo(Integer value) {
|
||||
addCriterion("default_status <>", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusGreaterThan(Integer value) {
|
||||
addCriterion("default_status >", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusGreaterThanOrEqualTo(Integer value) {
|
||||
addCriterion("default_status >=", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusLessThan(Integer value) {
|
||||
addCriterion("default_status <", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusLessThanOrEqualTo(Integer value) {
|
||||
addCriterion("default_status <=", value, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusIn(List<Integer> values) {
|
||||
addCriterion("default_status in", values, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusNotIn(List<Integer> values) {
|
||||
addCriterion("default_status not in", values, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusBetween(Integer value1, Integer value2) {
|
||||
addCriterion("default_status between", value1, value2, "defaultStatus");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDefaultStatusNotBetween(Integer value1, Integer value2) {
|
||||
addCriterion("default_status not between", value1, value2, "defaultStatus");
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user