package com.jsh.erp.datasource.entities;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class MsgExample {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public MsgExample() {
|
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 andMsgTitleIsNull() {
|
addCriterion("msg_title is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleIsNotNull() {
|
addCriterion("msg_title is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleEqualTo(String value) {
|
addCriterion("msg_title =", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleNotEqualTo(String value) {
|
addCriterion("msg_title <>", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleGreaterThan(String value) {
|
addCriterion("msg_title >", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleGreaterThanOrEqualTo(String value) {
|
addCriterion("msg_title >=", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleLessThan(String value) {
|
addCriterion("msg_title <", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleLessThanOrEqualTo(String value) {
|
addCriterion("msg_title <=", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleLike(String value) {
|
addCriterion("msg_title like", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleNotLike(String value) {
|
addCriterion("msg_title not like", value, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleIn(List<String> values) {
|
addCriterion("msg_title in", values, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleNotIn(List<String> values) {
|
addCriterion("msg_title not in", values, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleBetween(String value1, String value2) {
|
addCriterion("msg_title between", value1, value2, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgTitleNotBetween(String value1, String value2) {
|
addCriterion("msg_title not between", value1, value2, "msgTitle");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentIsNull() {
|
addCriterion("msg_content is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentIsNotNull() {
|
addCriterion("msg_content is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentEqualTo(String value) {
|
addCriterion("msg_content =", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentNotEqualTo(String value) {
|
addCriterion("msg_content <>", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentGreaterThan(String value) {
|
addCriterion("msg_content >", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentGreaterThanOrEqualTo(String value) {
|
addCriterion("msg_content >=", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentLessThan(String value) {
|
addCriterion("msg_content <", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentLessThanOrEqualTo(String value) {
|
addCriterion("msg_content <=", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentLike(String value) {
|
addCriterion("msg_content like", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentNotLike(String value) {
|
addCriterion("msg_content not like", value, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentIn(List<String> values) {
|
addCriterion("msg_content in", values, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentNotIn(List<String> values) {
|
addCriterion("msg_content not in", values, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentBetween(String value1, String value2) {
|
addCriterion("msg_content between", value1, value2, "msgContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andMsgContentNotBetween(String value1, String value2) {
|
addCriterion("msg_content not between", value1, value2, "msgContent");
|
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 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 andUserIdIsNull() {
|
addCriterion("user_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdIsNotNull() {
|
addCriterion("user_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdEqualTo(Long value) {
|
addCriterion("user_id =", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotEqualTo(Long value) {
|
addCriterion("user_id <>", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdGreaterThan(Long value) {
|
addCriterion("user_id >", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdGreaterThanOrEqualTo(Long value) {
|
addCriterion("user_id >=", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdLessThan(Long value) {
|
addCriterion("user_id <", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdLessThanOrEqualTo(Long value) {
|
addCriterion("user_id <=", value, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdIn(List<Long> values) {
|
addCriterion("user_id in", values, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotIn(List<Long> values) {
|
addCriterion("user_id not in", values, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdBetween(Long value1, Long value2) {
|
addCriterion("user_id between", value1, value2, "userId");
|
return (Criteria) this;
|
}
|
|
public Criteria andUserIdNotBetween(Long value1, Long value2) {
|
addCriterion("user_id not between", value1, value2, "userId");
|
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 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);
|
}
|
}
|
}
|