|
|
@@ -4,7 +4,7 @@ import java.io.Serializable;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
|
|
|
-public class CmsUserExample implements Serializable {
|
|
|
+public class CmsSystemExample implements Serializable {
|
|
|
protected String orderByClause;
|
|
|
|
|
|
protected boolean distinct;
|
|
|
@@ -17,7 +17,7 @@ public class CmsUserExample implements Serializable {
|
|
|
|
|
|
private Integer offset;
|
|
|
|
|
|
- public CmsUserExample() {
|
|
|
+ public CmsSystemExample() {
|
|
|
oredCriteria = new ArrayList<Criteria>();
|
|
|
}
|
|
|
|
|
|
@@ -127,393 +127,393 @@ public class CmsUserExample implements Serializable {
|
|
|
criteria.add(new Criterion(condition, value1, value2));
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdIsNull() {
|
|
|
- addCriterion("user_id is null");
|
|
|
+ public Criteria andSystemIdIsNull() {
|
|
|
+ addCriterion("system_id is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdIsNotNull() {
|
|
|
- addCriterion("user_id is not null");
|
|
|
+ public Criteria andSystemIdIsNotNull() {
|
|
|
+ addCriterion("system_id is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdEqualTo(Integer value) {
|
|
|
- addCriterion("user_id =", value, "userId");
|
|
|
+ public Criteria andSystemIdEqualTo(Integer value) {
|
|
|
+ addCriterion("system_id =", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdNotEqualTo(Integer value) {
|
|
|
- addCriterion("user_id <>", value, "userId");
|
|
|
+ public Criteria andSystemIdNotEqualTo(Integer value) {
|
|
|
+ addCriterion("system_id <>", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdGreaterThan(Integer value) {
|
|
|
- addCriterion("user_id >", value, "userId");
|
|
|
+ public Criteria andSystemIdGreaterThan(Integer value) {
|
|
|
+ addCriterion("system_id >", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("user_id >=", value, "userId");
|
|
|
+ public Criteria andSystemIdGreaterThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("system_id >=", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdLessThan(Integer value) {
|
|
|
- addCriterion("user_id <", value, "userId");
|
|
|
+ public Criteria andSystemIdLessThan(Integer value) {
|
|
|
+ addCriterion("system_id <", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("user_id <=", value, "userId");
|
|
|
+ public Criteria andSystemIdLessThanOrEqualTo(Integer value) {
|
|
|
+ addCriterion("system_id <=", value, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdIn(List<Integer> values) {
|
|
|
- addCriterion("user_id in", values, "userId");
|
|
|
+ public Criteria andSystemIdIn(List<Integer> values) {
|
|
|
+ addCriterion("system_id in", values, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdNotIn(List<Integer> values) {
|
|
|
- addCriterion("user_id not in", values, "userId");
|
|
|
+ public Criteria andSystemIdNotIn(List<Integer> values) {
|
|
|
+ addCriterion("system_id not in", values, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("user_id between", value1, value2, "userId");
|
|
|
+ public Criteria andSystemIdBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("system_id between", value1, value2, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUserIdNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("user_id not between", value1, value2, "userId");
|
|
|
+ public Criteria andSystemIdNotBetween(Integer value1, Integer value2) {
|
|
|
+ addCriterion("system_id not between", value1, value2, "systemId");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameIsNull() {
|
|
|
- addCriterion("username is null");
|
|
|
+ public Criteria andNameIsNull() {
|
|
|
+ addCriterion("name is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameIsNotNull() {
|
|
|
- addCriterion("username is not null");
|
|
|
+ public Criteria andNameIsNotNull() {
|
|
|
+ addCriterion("name is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameEqualTo(String value) {
|
|
|
- addCriterion("username =", value, "username");
|
|
|
+ public Criteria andNameEqualTo(String value) {
|
|
|
+ addCriterion("name =", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameNotEqualTo(String value) {
|
|
|
- addCriterion("username <>", value, "username");
|
|
|
+ public Criteria andNameNotEqualTo(String value) {
|
|
|
+ addCriterion("name <>", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameGreaterThan(String value) {
|
|
|
- addCriterion("username >", value, "username");
|
|
|
+ public Criteria andNameGreaterThan(String value) {
|
|
|
+ addCriterion("name >", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("username >=", value, "username");
|
|
|
+ public Criteria andNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("name >=", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameLessThan(String value) {
|
|
|
- addCriterion("username <", value, "username");
|
|
|
+ public Criteria andNameLessThan(String value) {
|
|
|
+ addCriterion("name <", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("username <=", value, "username");
|
|
|
+ public Criteria andNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("name <=", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameLike(String value) {
|
|
|
- addCriterion("username like", value, "username");
|
|
|
+ public Criteria andNameLike(String value) {
|
|
|
+ addCriterion("name like", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameNotLike(String value) {
|
|
|
- addCriterion("username not like", value, "username");
|
|
|
+ public Criteria andNameNotLike(String value) {
|
|
|
+ addCriterion("name not like", value, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameIn(List<String> values) {
|
|
|
- addCriterion("username in", values, "username");
|
|
|
+ public Criteria andNameIn(List<String> values) {
|
|
|
+ addCriterion("name in", values, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameNotIn(List<String> values) {
|
|
|
- addCriterion("username not in", values, "username");
|
|
|
+ public Criteria andNameNotIn(List<String> values) {
|
|
|
+ addCriterion("name not in", values, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameBetween(String value1, String value2) {
|
|
|
- addCriterion("username between", value1, value2, "username");
|
|
|
+ public Criteria andNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("name between", value1, value2, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andUsernameNotBetween(String value1, String value2) {
|
|
|
- addCriterion("username not between", value1, value2, "username");
|
|
|
+ public Criteria andNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("name not between", value1, value2, "name");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordIsNull() {
|
|
|
- addCriterion("password is null");
|
|
|
+ public Criteria andCodeIsNull() {
|
|
|
+ addCriterion("code is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordIsNotNull() {
|
|
|
- addCriterion("password is not null");
|
|
|
+ public Criteria andCodeIsNotNull() {
|
|
|
+ addCriterion("code is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordEqualTo(String value) {
|
|
|
- addCriterion("password =", value, "password");
|
|
|
+ public Criteria andCodeEqualTo(String value) {
|
|
|
+ addCriterion("code =", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordNotEqualTo(String value) {
|
|
|
- addCriterion("password <>", value, "password");
|
|
|
+ public Criteria andCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("code <>", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordGreaterThan(String value) {
|
|
|
- addCriterion("password >", value, "password");
|
|
|
+ public Criteria andCodeGreaterThan(String value) {
|
|
|
+ addCriterion("code >", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("password >=", value, "password");
|
|
|
+ public Criteria andCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("code >=", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordLessThan(String value) {
|
|
|
- addCriterion("password <", value, "password");
|
|
|
+ public Criteria andCodeLessThan(String value) {
|
|
|
+ addCriterion("code <", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("password <=", value, "password");
|
|
|
+ public Criteria andCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("code <=", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordLike(String value) {
|
|
|
- addCriterion("password like", value, "password");
|
|
|
+ public Criteria andCodeLike(String value) {
|
|
|
+ addCriterion("code like", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordNotLike(String value) {
|
|
|
- addCriterion("password not like", value, "password");
|
|
|
+ public Criteria andCodeNotLike(String value) {
|
|
|
+ addCriterion("code not like", value, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordIn(List<String> values) {
|
|
|
- addCriterion("password in", values, "password");
|
|
|
+ public Criteria andCodeIn(List<String> values) {
|
|
|
+ addCriterion("code in", values, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordNotIn(List<String> values) {
|
|
|
- addCriterion("password not in", values, "password");
|
|
|
+ public Criteria andCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("code not in", values, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordBetween(String value1, String value2) {
|
|
|
- addCriterion("password between", value1, value2, "password");
|
|
|
+ public Criteria andCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("code between", value1, value2, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andPasswordNotBetween(String value1, String value2) {
|
|
|
- addCriterion("password not between", value1, value2, "password");
|
|
|
+ public Criteria andCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("code not between", value1, value2, "code");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameIsNull() {
|
|
|
- addCriterion("nickname is null");
|
|
|
+ public Criteria andDescriptionIsNull() {
|
|
|
+ addCriterion("description is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameIsNotNull() {
|
|
|
- addCriterion("nickname is not null");
|
|
|
+ public Criteria andDescriptionIsNotNull() {
|
|
|
+ addCriterion("description is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameEqualTo(String value) {
|
|
|
- addCriterion("nickname =", value, "nickname");
|
|
|
+ public Criteria andDescriptionEqualTo(String value) {
|
|
|
+ addCriterion("description =", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameNotEqualTo(String value) {
|
|
|
- addCriterion("nickname <>", value, "nickname");
|
|
|
+ public Criteria andDescriptionNotEqualTo(String value) {
|
|
|
+ addCriterion("description <>", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameGreaterThan(String value) {
|
|
|
- addCriterion("nickname >", value, "nickname");
|
|
|
+ public Criteria andDescriptionGreaterThan(String value) {
|
|
|
+ addCriterion("description >", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameGreaterThanOrEqualTo(String value) {
|
|
|
- addCriterion("nickname >=", value, "nickname");
|
|
|
+ public Criteria andDescriptionGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("description >=", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameLessThan(String value) {
|
|
|
- addCriterion("nickname <", value, "nickname");
|
|
|
+ public Criteria andDescriptionLessThan(String value) {
|
|
|
+ addCriterion("description <", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameLessThanOrEqualTo(String value) {
|
|
|
- addCriterion("nickname <=", value, "nickname");
|
|
|
+ public Criteria andDescriptionLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("description <=", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameLike(String value) {
|
|
|
- addCriterion("nickname like", value, "nickname");
|
|
|
+ public Criteria andDescriptionLike(String value) {
|
|
|
+ addCriterion("description like", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameNotLike(String value) {
|
|
|
- addCriterion("nickname not like", value, "nickname");
|
|
|
+ public Criteria andDescriptionNotLike(String value) {
|
|
|
+ addCriterion("description not like", value, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameIn(List<String> values) {
|
|
|
- addCriterion("nickname in", values, "nickname");
|
|
|
+ public Criteria andDescriptionIn(List<String> values) {
|
|
|
+ addCriterion("description in", values, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameNotIn(List<String> values) {
|
|
|
- addCriterion("nickname not in", values, "nickname");
|
|
|
+ public Criteria andDescriptionNotIn(List<String> values) {
|
|
|
+ addCriterion("description not in", values, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameBetween(String value1, String value2) {
|
|
|
- addCriterion("nickname between", value1, value2, "nickname");
|
|
|
+ public Criteria andDescriptionBetween(String value1, String value2) {
|
|
|
+ addCriterion("description between", value1, value2, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andNicknameNotBetween(String value1, String value2) {
|
|
|
- addCriterion("nickname not between", value1, value2, "nickname");
|
|
|
+ public Criteria andDescriptionNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("description not between", value1, value2, "description");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexIsNull() {
|
|
|
- addCriterion("sex is null");
|
|
|
+ public Criteria andCtimeIsNull() {
|
|
|
+ addCriterion("ctime is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexIsNotNull() {
|
|
|
- addCriterion("sex is not null");
|
|
|
+ public Criteria andCtimeIsNotNull() {
|
|
|
+ addCriterion("ctime is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexEqualTo(Integer value) {
|
|
|
- addCriterion("sex =", value, "sex");
|
|
|
+ public Criteria andCtimeEqualTo(Long value) {
|
|
|
+ addCriterion("ctime =", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexNotEqualTo(Integer value) {
|
|
|
- addCriterion("sex <>", value, "sex");
|
|
|
+ public Criteria andCtimeNotEqualTo(Long value) {
|
|
|
+ addCriterion("ctime <>", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexGreaterThan(Integer value) {
|
|
|
- addCriterion("sex >", value, "sex");
|
|
|
+ public Criteria andCtimeGreaterThan(Long value) {
|
|
|
+ addCriterion("ctime >", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexGreaterThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("sex >=", value, "sex");
|
|
|
+ public Criteria andCtimeGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ctime >=", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexLessThan(Integer value) {
|
|
|
- addCriterion("sex <", value, "sex");
|
|
|
+ public Criteria andCtimeLessThan(Long value) {
|
|
|
+ addCriterion("ctime <", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexLessThanOrEqualTo(Integer value) {
|
|
|
- addCriterion("sex <=", value, "sex");
|
|
|
+ public Criteria andCtimeLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("ctime <=", value, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexIn(List<Integer> values) {
|
|
|
- addCriterion("sex in", values, "sex");
|
|
|
+ public Criteria andCtimeIn(List<Long> values) {
|
|
|
+ addCriterion("ctime in", values, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexNotIn(List<Integer> values) {
|
|
|
- addCriterion("sex not in", values, "sex");
|
|
|
+ public Criteria andCtimeNotIn(List<Long> values) {
|
|
|
+ addCriterion("ctime not in", values, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("sex between", value1, value2, "sex");
|
|
|
+ public Criteria andCtimeBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ctime between", value1, value2, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andSexNotBetween(Integer value1, Integer value2) {
|
|
|
- addCriterion("sex not between", value1, value2, "sex");
|
|
|
+ public Criteria andCtimeNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("ctime not between", value1, value2, "ctime");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeIsNull() {
|
|
|
- addCriterion("ctime is null");
|
|
|
+ public Criteria andOrdersIsNull() {
|
|
|
+ addCriterion("orders is null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeIsNotNull() {
|
|
|
- addCriterion("ctime is not null");
|
|
|
+ public Criteria andOrdersIsNotNull() {
|
|
|
+ addCriterion("orders is not null");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeEqualTo(Long value) {
|
|
|
- addCriterion("ctime =", value, "ctime");
|
|
|
+ public Criteria andOrdersEqualTo(Long value) {
|
|
|
+ addCriterion("orders =", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeNotEqualTo(Long value) {
|
|
|
- addCriterion("ctime <>", value, "ctime");
|
|
|
+ public Criteria andOrdersNotEqualTo(Long value) {
|
|
|
+ addCriterion("orders <>", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeGreaterThan(Long value) {
|
|
|
- addCriterion("ctime >", value, "ctime");
|
|
|
+ public Criteria andOrdersGreaterThan(Long value) {
|
|
|
+ addCriterion("orders >", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeGreaterThanOrEqualTo(Long value) {
|
|
|
- addCriterion("ctime >=", value, "ctime");
|
|
|
+ public Criteria andOrdersGreaterThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("orders >=", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeLessThan(Long value) {
|
|
|
- addCriterion("ctime <", value, "ctime");
|
|
|
+ public Criteria andOrdersLessThan(Long value) {
|
|
|
+ addCriterion("orders <", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeLessThanOrEqualTo(Long value) {
|
|
|
- addCriterion("ctime <=", value, "ctime");
|
|
|
+ public Criteria andOrdersLessThanOrEqualTo(Long value) {
|
|
|
+ addCriterion("orders <=", value, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeIn(List<Long> values) {
|
|
|
- addCriterion("ctime in", values, "ctime");
|
|
|
+ public Criteria andOrdersIn(List<Long> values) {
|
|
|
+ addCriterion("orders in", values, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeNotIn(List<Long> values) {
|
|
|
- addCriterion("ctime not in", values, "ctime");
|
|
|
+ public Criteria andOrdersNotIn(List<Long> values) {
|
|
|
+ addCriterion("orders not in", values, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeBetween(Long value1, Long value2) {
|
|
|
- addCriterion("ctime between", value1, value2, "ctime");
|
|
|
+ public Criteria andOrdersBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("orders between", value1, value2, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
|
|
|
- public Criteria andCtimeNotBetween(Long value1, Long value2) {
|
|
|
- addCriterion("ctime not between", value1, value2, "ctime");
|
|
|
+ public Criteria andOrdersNotBetween(Long value1, Long value2) {
|
|
|
+ addCriterion("orders not between", value1, value2, "orders");
|
|
|
return (Criteria) this;
|
|
|
}
|
|
|
}
|