1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240 |
- /*
- * 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 SysAppcodeSQLBuilder {
- /**
- * 标准数据类型 : 标准数据类型
- * @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 SysAppcodeSQLBuilder() {
- oredCriteria = new ArrayList<Criteria>();
- }
- /**
- * @generated
- */
- protected SysAppcodeSQLBuilder(SysAppcodeSQLBuilder 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 andCodeIdIsNull() {
- addCriterion("code_id is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdIsNotNull() {
- addCriterion("code_id <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdEqualTo(String value) {
- addCriterion("code_id =", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdNotEqualTo(String value) {
- addCriterion("code_id <>", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdGreaterThan(String value) {
- addCriterion("code_id >", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdGreaterThanOrEqualTo(String value) {
- addCriterion("code_id >=", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdLessThan(String value) {
- addCriterion("code_id <", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdLessThanOrEqualTo(String value) {
- addCriterion("code_id <=", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdLike(String value) {
- addCriterion("code_id like", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdNotLike(String value) {
- addCriterion("code_id not like", value, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdIn(List<String> values) {
- addCriterion("code_id in", values, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdNotIn(List<String> values) {
- addCriterion("code_id not in", values, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdBetween(String value1, String value2) {
- addCriterion("code_id between", value1, value2, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeIdNotBetween(String value1, String value2) {
- addCriterion("code_id not between", value1, value2, "codeId");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidIsNull() {
- addCriterion("sysid is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidIsNotNull() {
- addCriterion("sysid <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidEqualTo(String value) {
- addCriterion("sysid =", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidNotEqualTo(String value) {
- addCriterion("sysid <>", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidGreaterThan(String value) {
- addCriterion("sysid >", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidGreaterThanOrEqualTo(String value) {
- addCriterion("sysid >=", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidLessThan(String value) {
- addCriterion("sysid <", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidLessThanOrEqualTo(String value) {
- addCriterion("sysid <=", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidLike(String value) {
- addCriterion("sysid like", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidNotLike(String value) {
- addCriterion("sysid not like", value, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidIn(List<String> values) {
- addCriterion("sysid in", values, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidNotIn(List<String> values) {
- addCriterion("sysid not in", values, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidBetween(String value1, String value2) {
- addCriterion("sysid between", value1, value2, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andSysidNotBetween(String value1, String value2) {
- addCriterion("sysid not between", value1, value2, "sysid");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeIsNull() {
- addCriterion("code_type is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeIsNotNull() {
- addCriterion("code_type <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeEqualTo(String value) {
- addCriterion("code_type =", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeNotEqualTo(String value) {
- addCriterion("code_type <>", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeGreaterThan(String value) {
- addCriterion("code_type >", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeGreaterThanOrEqualTo(String value) {
- addCriterion("code_type >=", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeLessThan(String value) {
- addCriterion("code_type <", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeLessThanOrEqualTo(String value) {
- addCriterion("code_type <=", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeLike(String value) {
- addCriterion("code_type like", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeNotLike(String value) {
- addCriterion("code_type not like", value, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeIn(List<String> values) {
- addCriterion("code_type in", values, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeNotIn(List<String> values) {
- addCriterion("code_type not in", values, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeBetween(String value1, String value2) {
- addCriterion("code_type between", value1, value2, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeTypeNotBetween(String value1, String value2) {
- addCriterion("code_type not between", value1, value2, "codeType");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameIsNull() {
- addCriterion("code_name is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameIsNotNull() {
- addCriterion("code_name <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameEqualTo(String value) {
- addCriterion("code_name =", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameNotEqualTo(String value) {
- addCriterion("code_name <>", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameGreaterThan(String value) {
- addCriterion("code_name >", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameGreaterThanOrEqualTo(String value) {
- addCriterion("code_name >=", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameLessThan(String value) {
- addCriterion("code_name <", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameLessThanOrEqualTo(String value) {
- addCriterion("code_name <=", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameLike(String value) {
- addCriterion("code_name like", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameNotLike(String value) {
- addCriterion("code_name not like", value, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameIn(List<String> values) {
- addCriterion("code_name in", values, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameNotIn(List<String> values) {
- addCriterion("code_name not in", values, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameBetween(String value1, String value2) {
- addCriterion("code_name between", value1, value2, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeNameNotBetween(String value1, String value2) {
- addCriterion("code_name not between", value1, value2, "codeName");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueIsNull() {
- addCriterion("code_value is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueIsNotNull() {
- addCriterion("code_value <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueEqualTo(String value) {
- addCriterion("code_value =", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueNotEqualTo(String value) {
- addCriterion("code_value <>", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueGreaterThan(String value) {
- addCriterion("code_value >", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueGreaterThanOrEqualTo(String value) {
- addCriterion("code_value >=", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueLessThan(String value) {
- addCriterion("code_value <", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueLessThanOrEqualTo(String value) {
- addCriterion("code_value <=", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueLike(String value) {
- addCriterion("code_value like", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueNotLike(String value) {
- addCriterion("code_value not like", value, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueIn(List<String> values) {
- addCriterion("code_value in", values, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueNotIn(List<String> values) {
- addCriterion("code_value not in", values, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueBetween(String value1, String value2) {
- addCriterion("code_value between", value1, value2, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeValueNotBetween(String value1, String value2) {
- addCriterion("code_value not between", value1, value2, "codeValue");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescIsNull() {
- addCriterion("code_desc is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescIsNotNull() {
- addCriterion("code_desc <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescEqualTo(String value) {
- addCriterion("code_desc =", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescNotEqualTo(String value) {
- addCriterion("code_desc <>", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescGreaterThan(String value) {
- addCriterion("code_desc >", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescGreaterThanOrEqualTo(String value) {
- addCriterion("code_desc >=", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescLessThan(String value) {
- addCriterion("code_desc <", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescLessThanOrEqualTo(String value) {
- addCriterion("code_desc <=", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescLike(String value) {
- addCriterion("code_desc like", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescNotLike(String value) {
- addCriterion("code_desc not like", value, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescIn(List<String> values) {
- addCriterion("code_desc in", values, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescNotIn(List<String> values) {
- addCriterion("code_desc not in", values, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescBetween(String value1, String value2) {
- addCriterion("code_desc between", value1, value2, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeDescNotBetween(String value1, String value2) {
- addCriterion("code_desc not between", value1, value2, "codeDesc");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderIsNull() {
- addCriterion("code_order is null");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderIsNotNull() {
- addCriterion("code_order <> ''");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderEqualTo(Integer value) {
- addCriterion("code_order =", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderNotEqualTo(Integer value) {
- addCriterion("code_order <>", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderGreaterThan(Integer value) {
- addCriterion("code_order >", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderGreaterThanOrEqualTo(Integer value) {
- addCriterion("code_order >=", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderLessThan(Integer value) {
- addCriterion("code_order <", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderLessThanOrEqualTo(Integer value) {
- addCriterion("code_order <=", value, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderIn(List<Integer> values) {
- addCriterion("code_order in", values, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderNotIn(List<Integer> values) {
- addCriterion("code_order not in", values, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderBetween(Integer value1, Integer value2) {
- addCriterion("code_order between", value1, value2, "codeOrder");
- return (Criteria) this;
- }
- /**
- * @generated
- */
- public Criteria andCodeOrderNotBetween(Integer value1, Integer value2) {
- addCriterion("code_order not between", value1, value2, "codeOrder");
- return (Criteria) this;
- }
- }
- /**
- * 标准数据类型 : 标准数据类型
- * @generated
- */
- public static class Criteria extends GeneratedCriteria {
- protected Criteria() {
- super();
- }
- }
- }
|