123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224 |
- /*
- * Copyright 2010 The YAPULAN Software Foundation
- *
- * Licensed under the YAPULAN License, Version 2.0 (the "License");
- */
- package com.miniframe.system.model;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- public class PlatformSQLBuilder {
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected String orderByClause;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected boolean distinct;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected boolean NoWait;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected boolean forUpdate;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected List<Criteria> oredCriteria;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- private Integer oracleStart;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- private Integer oracleEnd;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- private Integer startOffSet;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- private Integer pageSize;
- /**
- * @generated
- */
- public PlatformSQLBuilder() {
- oredCriteria = new ArrayList<Criteria>();
- }
- /**
- * @generated
- */
- protected PlatformSQLBuilder(PlatformSQLBuilder example) {
- this.orderByClause = example.orderByClause;
- this.oredCriteria = example.oredCriteria;
- this.distinct = example.distinct;
- this.forUpdate = example.forUpdate;
- this.NoWait = example.NoWait;
- }
- /**
- * 设置排序
- * @generated
- */
- public void setOrderByClause(String orderByClause) {
- this.orderByClause = orderByClause;
- }
- /**
- * 获取排序
- * @generated
- */
- public String getOrderByClause() {
- return orderByClause;
- }
- /**
- * 设置是否过滤重复
- * @generated
- */
- public void setDistinct(boolean distinct) {
- this.distinct = distinct;
- }
- /**
- * 获取是否过滤重复
- * @generated
- */
- public boolean isDistinct() {
- return distinct;
- }
- /**
- * 设置是否上锁是否不等待
- * @generated
- */
- public void setNoWait(boolean NoWait) {
- this.NoWait = NoWait;
- }
- /**
- * 设置是否上锁是否不等待
- * @generated
- */
- public boolean isNoWait() {
- return NoWait;
- }
- /**
- * 设置是否行锁定
- * @generated
- */
- public void setForUpdate(boolean forUpdate) {
- this.forUpdate = forUpdate;
- }
- /**
- * 获取是否行锁定
- * @generated
- */
- public boolean isForUpdate() {
- return forUpdate;
- }
- /**
- * @generated
- */
- public List<Criteria> getOredCriteria() {
- return oredCriteria;
- }
- /**
- * @generated
- */
- public void or(Criteria criteria) {
- oredCriteria.add(criteria);
- }
- /**
- * 或
- * @generated
- */
- public Criteria or() {
- Criteria criteria = createCriteriaInternal();
- oredCriteria.add(criteria);
- return criteria;
- }
- /**
- * @generated
- */
- public Criteria createCriteria() {
- Criteria criteria = createCriteriaInternal();
- if (oredCriteria.size() == 0) {
- oredCriteria.add(criteria);
- }
- return criteria;
- }
- /**
- * @generated
- */
- protected Criteria createCriteriaInternal() {
- Criteria criteria = new Criteria();
- return criteria;
- }
- /**
- * 清除
- * @generated
- */
- public void clear() {
- oredCriteria.clear();
- orderByClause = null;
- distinct = false;
- forUpdate = false;
- NoWait = false;
- }
- /**
- * 设置开始行,从1开始
- * @generated
- */
- public void setOracleStart(Integer oracleStart) {
- this.oracleStart = oracleStart;
- this.startOffSet = this.oracleStart - 1;
- if(this.oracleEnd!=null){
- this.pageSize = this.oracleEnd - this.oracleStart + 1;
- }
- }
- /**
- * 获取开始行,从1开始
- * @generated
- */
- public Integer getOracleStart() {
- return oracleStart;
- }
- /**
- * 设置结束行
- * @generated
- */
- public void setOracleEnd(Integer oracleEnd) {
- if(this.oracleStart==null){
- this.oracleStart =1;
- this.startOffSet =0;
- }
- this.oracleEnd = oracleEnd;
- this.pageSize = this.oracleEnd - this.oracleStart + 1;
- }
- /**
- * 获取结束行
- * @generated
- */
- public Integer getOracleEnd() {
- return oracleEnd;
- }
- /**
- * 设置偏移量,从0开始
- * @generated
- */
- public void setStartOffSet(Integer startOffSet) {
- this.startOffSet = startOffSet;
- this.oracleStart = this.startOffSet + 1;
- if(this.pageSize!=null){
- this.oracleEnd = this.oracleStart - 1 + this.pageSize;
- }
- }
- /**
- * 获取偏移量,从0开始
- * @generated
- */
- public Integer getStartOffSet() {
- return startOffSet;
- }
- /**
- * 设置页尺寸
- * @generated
- */
- public void setPageSize(Integer pageSize) {
- if(this.oracleStart==null){
- this.oracleStart =1;
- this.startOffSet =0;
- }
- this.pageSize = pageSize;
- this.oracleEnd = this.pageSize + this.oracleStart - 1;
- }
- /**
- * 获取页尺寸
- * @generated
- */
- public Integer getPageSize() {
- return pageSize;
- }
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected abstract static class GeneratedCriteria {
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected List<String> criteriaWithoutValue;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected List<Map<String, Object>> criteriaWithSingleValue;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected List<Map<String, Object>> criteriaWithListValue;
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- protected List<Map<String, Object>> criteriaWithBetweenValue;
- /**
- * @generated
- */
- protected GeneratedCriteria() {
- super();
- criteriaWithoutValue = new ArrayList<String>();
- criteriaWithSingleValue = new ArrayList<Map<String, Object>>();
- criteriaWithListValue = new ArrayList<Map<String, Object>>();
- criteriaWithBetweenValue = new ArrayList<Map<String, Object>>();
- }
- /**
- * 验证
- * @generated
- */
- public boolean isValid() {
- return criteriaWithoutValue.size() > 0
- || criteriaWithSingleValue.size() > 0
- || criteriaWithListValue.size() > 0
- || criteriaWithBetweenValue.size() > 0;
- }
- /**
- * @generated
- */
- public List<String> getCriteriaWithoutValue() {
- return criteriaWithoutValue;
- }
- /**
- * @generated
- */
- public void setCriteriaWithoutValue(List<String> criteriaWithoutValue) {
- this.criteriaWithoutValue = criteriaWithoutValue;
- }
- /**
- * @generated
- */
- public List<Map<String, Object>> getCriteriaWithSingleValue() {
- return criteriaWithSingleValue;
- }
- /**
- * @generated
- */
- public void setCriteriaWithSingleValue(List<Map<String, Object>> criteriaWithSingleValue) {
- this.criteriaWithSingleValue = criteriaWithSingleValue;
- }
- /**
- * @generated
- */
- public List<Map<String, Object>> getCriteriaWithListValue() {
- return criteriaWithListValue;
- }
- /**
- * @generated
- */
- public void setCriteriaWithListValue(List<Map<String, Object>> criteriaWithListValue) {
- this.criteriaWithListValue = criteriaWithListValue;
- }
- /**
- * @generated
- */
- public List<Map<String, Object>> getCriteriaWithBetweenValue() {
- return criteriaWithBetweenValue;
- }
- /**
- * @generated
- */
- public void setCriteriaWithBetweenValue(List<Map<String, Object>> criteriaWithBetweenValue) {
- this.criteriaWithBetweenValue = criteriaWithBetweenValue;
- }
- /**
- * @generated
- */
- public void whereSQL(String condition) {
- if (condition == null) {
- throw new RuntimeException("Value for condition cannot be null");
- }
- criteriaWithoutValue.add(condition);
- }
- /**
- * @generated
- */
- protected void addCriterion(String condition) {
- if (condition == null) {
- throw new RuntimeException("Value for condition cannot be null");
- }
- criteriaWithoutValue.add(condition);
- }
- /**
- * @generated
- */
- protected void addCriterion(String condition, Object value, String property) {
- if (value == null) {
- throw new RuntimeException("Value for " + property + " cannot be null");
- }
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("value", value);
- criteriaWithSingleValue.add(map);
- }
- /**
- * @generated
- */
- protected void addCriterion(String condition, List<? extends Object> values, String property) {
- if (values == null || values.size() == 0) {
- throw new RuntimeException("Value list for " + property + " cannot be null or empty");
- }
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("values", values);
- criteriaWithListValue.add(map);
- }
- /**
- * @generated
- */
- 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");
- }
- List<Object> list = new ArrayList<Object>();
- list.add(value1);
- list.add(value2);
- Map<String, Object> map = new HashMap<String, Object>();
- map.put("condition", condition);
- map.put("values", list);
- criteriaWithBetweenValue.add(map);
- }
- /**
- * @generated
- */
- public Criteria andIdIsNull() {
- addCriterion("id is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdIsNotNull() {
- addCriterion("id <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdEqualTo(String value) {
- addCriterion("id =", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdNotEqualTo(String value) {
- addCriterion("id <>", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdGreaterThan(String value) {
- addCriterion("id >", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdGreaterThanOrEqualTo(String value) {
- addCriterion("id >=", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdLessThan(String value) {
- addCriterion("id <", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdLessThanOrEqualTo(String value) {
- addCriterion("id <=", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdLike(String value) {
- addCriterion("id like", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdNotLike(String value) {
- addCriterion("id not like", value, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdIn(List<String> values) {
- addCriterion("id in", values, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdNotIn(List<String> values) {
- addCriterion("id not in", values, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdBetween(String value1, String value2) {
- addCriterion("id between", value1, value2, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andIdNotBetween(String value1, String value2) {
- addCriterion("id not between", value1, value2, "id");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameIsNull() {
- addCriterion("name is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameIsNotNull() {
- addCriterion("name <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameEqualTo(String value) {
- addCriterion("name =", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameNotEqualTo(String value) {
- addCriterion("name <>", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameGreaterThan(String value) {
- addCriterion("name >", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameGreaterThanOrEqualTo(String value) {
- addCriterion("name >=", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameLessThan(String value) {
- addCriterion("name <", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameLessThanOrEqualTo(String value) {
- addCriterion("name <=", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameLike(String value) {
- addCriterion("name like", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameNotLike(String value) {
- addCriterion("name not like", value, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameIn(List<String> values) {
- addCriterion("name in", values, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameNotIn(List<String> values) {
- addCriterion("name not in", values, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameBetween(String value1, String value2) {
- addCriterion("name between", value1, value2, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andNameNotBetween(String value1, String value2) {
- addCriterion("name not between", value1, value2, "name");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidIsNull() {
- addCriterion("platformid is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidIsNotNull() {
- addCriterion("platformid <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidEqualTo(String value) {
- addCriterion("platformid =", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidNotEqualTo(String value) {
- addCriterion("platformid <>", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidGreaterThan(String value) {
- addCriterion("platformid >", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidGreaterThanOrEqualTo(String value) {
- addCriterion("platformid >=", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidLessThan(String value) {
- addCriterion("platformid <", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidLessThanOrEqualTo(String value) {
- addCriterion("platformid <=", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidLike(String value) {
- addCriterion("platformid like", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidNotLike(String value) {
- addCriterion("platformid not like", value, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidIn(List<String> values) {
- addCriterion("platformid in", values, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidNotIn(List<String> values) {
- addCriterion("platformid not in", values, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidBetween(String value1, String value2) {
- addCriterion("platformid between", value1, value2, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andPlatformidNotBetween(String value1, String value2) {
- addCriterion("platformid not between", value1, value2, "platformid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksIsNull() {
- addCriterion("remarks is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksIsNotNull() {
- addCriterion("remarks <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksEqualTo(String value) {
- addCriterion("remarks =", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksNotEqualTo(String value) {
- addCriterion("remarks <>", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksGreaterThan(String value) {
- addCriterion("remarks >", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksGreaterThanOrEqualTo(String value) {
- addCriterion("remarks >=", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksLessThan(String value) {
- addCriterion("remarks <", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksLessThanOrEqualTo(String value) {
- addCriterion("remarks <=", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksLike(String value) {
- addCriterion("remarks like", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksNotLike(String value) {
- addCriterion("remarks not like", value, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksIn(List<String> values) {
- addCriterion("remarks in", values, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksNotIn(List<String> values) {
- addCriterion("remarks not in", values, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksBetween(String value1, String value2) {
- addCriterion("remarks between", value1, value2, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andRemarksNotBetween(String value1, String value2) {
- addCriterion("remarks not between", value1, value2, "remarks");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountIsNull() {
- addCriterion("account is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountIsNotNull() {
- addCriterion("account <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountEqualTo(String value) {
- addCriterion("account =", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountNotEqualTo(String value) {
- addCriterion("account <>", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountGreaterThan(String value) {
- addCriterion("account >", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountGreaterThanOrEqualTo(String value) {
- addCriterion("account >=", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountLessThan(String value) {
- addCriterion("account <", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountLessThanOrEqualTo(String value) {
- addCriterion("account <=", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountLike(String value) {
- addCriterion("account like", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountNotLike(String value) {
- addCriterion("account not like", value, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountIn(List<String> values) {
- addCriterion("account in", values, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountNotIn(List<String> values) {
- addCriterion("account not in", values, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountBetween(String value1, String value2) {
- addCriterion("account between", value1, value2, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andAccountNotBetween(String value1, String value2) {
- addCriterion("account not between", value1, value2, "account");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalIsNull() {
- addCriterion("total is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalIsNotNull() {
- addCriterion("total <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalEqualTo(Long value) {
- addCriterion("total =", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalNotEqualTo(Long value) {
- addCriterion("total <>", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalGreaterThan(Long value) {
- addCriterion("total >", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalGreaterThanOrEqualTo(Long value) {
- addCriterion("total >=", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalLessThan(Long value) {
- addCriterion("total <", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalLessThanOrEqualTo(Long value) {
- addCriterion("total <=", value, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalIn(List<Long> values) {
- addCriterion("total in", values, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalNotIn(List<Long> values) {
- addCriterion("total not in", values, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalBetween(Long value1, Long value2) {
- addCriterion("total between", value1, value2, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andTotalNotBetween(Long value1, Long value2) {
- addCriterion("total not between", value1, value2, "total");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedIsNull() {
- addCriterion("used is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedIsNotNull() {
- addCriterion("used <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedEqualTo(Long value) {
- addCriterion("used =", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedNotEqualTo(Long value) {
- addCriterion("used <>", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedGreaterThan(Long value) {
- addCriterion("used >", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedGreaterThanOrEqualTo(Long value) {
- addCriterion("used >=", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedLessThan(Long value) {
- addCriterion("used <", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedLessThanOrEqualTo(Long value) {
- addCriterion("used <=", value, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedIn(List<Long> values) {
- addCriterion("used in", values, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedNotIn(List<Long> values) {
- addCriterion("used not in", values, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedBetween(Long value1, Long value2) {
- addCriterion("used between", value1, value2, "used");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andUsedNotBetween(Long value1, Long value2) {
- addCriterion("used not between", value1, value2, "used");
- return (Criteria) this;
- }
- }
- /**
- * 平台配置表 : 平台配置表
- * @generated
- */
- public static class Criteria extends GeneratedCriteria {
- protected Criteria() {
- super();
- }
- }
- }
|