123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233 |
- package com.platform.yijia.pojo;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- public class SysDeptExample {
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- protected String orderByClause;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- protected boolean distinct;
- /**
- * This field was generated by MyBatis Generator.
- * This field corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- protected List<Criteria> oredCriteria;
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public SysDeptExample() {
- oredCriteria = new ArrayList<Criteria>();
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public void setOrderByClause(String orderByClause) {
- this.orderByClause = orderByClause;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public String getOrderByClause() {
- return orderByClause;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public void setDistinct(boolean distinct) {
- this.distinct = distinct;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public boolean isDistinct() {
- return distinct;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public List<Criteria> getOredCriteria() {
- return oredCriteria;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public void or(Criteria criteria) {
- oredCriteria.add(criteria);
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public Criteria or() {
- Criteria criteria = createCriteriaInternal();
- oredCriteria.add(criteria);
- return criteria;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public Criteria createCriteria() {
- Criteria criteria = createCriteriaInternal();
- if (oredCriteria.size() == 0) {
- oredCriteria.add(criteria);
- }
- return criteria;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- protected Criteria createCriteriaInternal() {
- Criteria criteria = new Criteria();
- return criteria;
- }
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- public void clear() {
- oredCriteria.clear();
- orderByClause = null;
- distinct = false;
- }
- /**
- * This class was generated by MyBatis Generator.
- * This class corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- protected abstract static class GeneratedCriteria {
- protected List<Criterion> criteria;
- protected GeneratedCriteria() {
- super();
- criteria = new ArrayList<Criterion>();
- }
- public boolean isValid() {
- return criteria.size() > 0;
- }
- public List<Criterion> getAllCriteria() {
- return criteria;
- }
- public List<Criterion> getCriteria() {
- return criteria;
- }
- protected void addCriterion(String condition) {
- if (condition == null) {
- throw new RuntimeException("Value for condition cannot be null");
- }
- criteria.add(new Criterion(condition));
- }
- protected void addCriterion(String condition, Object value, String property) {
- if (value == null) {
- throw new RuntimeException("Value for " + property + " cannot be null");
- }
- criteria.add(new Criterion(condition, value));
- }
- protected void addCriterion(String condition, Object value1, Object value2, String property) {
- if (value1 == null || value2 == null) {
- throw new RuntimeException("Between values for " + property + " cannot be null");
- }
- criteria.add(new Criterion(condition, value1, value2));
- }
- public Criteria andDeptIdIsNull() {
- addCriterion("dept_id is null");
- return (Criteria) this;
- }
- public Criteria andDeptIdIsNotNull() {
- addCriterion("dept_id is not null");
- return (Criteria) this;
- }
- public Criteria andDeptIdEqualTo(Long value) {
- addCriterion("dept_id =", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdNotEqualTo(Long value) {
- addCriterion("dept_id <>", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdGreaterThan(Long value) {
- addCriterion("dept_id >", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdGreaterThanOrEqualTo(Long value) {
- addCriterion("dept_id >=", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdLessThan(Long value) {
- addCriterion("dept_id <", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdLessThanOrEqualTo(Long value) {
- addCriterion("dept_id <=", value, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdIn(List<Long> values) {
- addCriterion("dept_id in", values, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdNotIn(List<Long> values) {
- addCriterion("dept_id not in", values, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdBetween(Long value1, Long value2) {
- addCriterion("dept_id between", value1, value2, "deptId");
- return (Criteria) this;
- }
- public Criteria andDeptIdNotBetween(Long value1, Long value2) {
- addCriterion("dept_id not between", value1, value2, "deptId");
- return (Criteria) this;
- }
- public Criteria andParentIdIsNull() {
- addCriterion("parent_id is null");
- return (Criteria) this;
- }
- public Criteria andParentIdIsNotNull() {
- addCriterion("parent_id is not null");
- return (Criteria) this;
- }
- public Criteria andParentIdEqualTo(Long value) {
- addCriterion("parent_id =", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdNotEqualTo(Long value) {
- addCriterion("parent_id <>", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdGreaterThan(Long value) {
- addCriterion("parent_id >", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdGreaterThanOrEqualTo(Long value) {
- addCriterion("parent_id >=", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdLessThan(Long value) {
- addCriterion("parent_id <", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdLessThanOrEqualTo(Long value) {
- addCriterion("parent_id <=", value, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdIn(List<Long> values) {
- addCriterion("parent_id in", values, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdNotIn(List<Long> values) {
- addCriterion("parent_id not in", values, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdBetween(Long value1, Long value2) {
- addCriterion("parent_id between", value1, value2, "parentId");
- return (Criteria) this;
- }
- public Criteria andParentIdNotBetween(Long value1, Long value2) {
- addCriterion("parent_id not between", value1, value2, "parentId");
- return (Criteria) this;
- }
- public Criteria andAncestorsIsNull() {
- addCriterion("ancestors is null");
- return (Criteria) this;
- }
- public Criteria andAncestorsIsNotNull() {
- addCriterion("ancestors is not null");
- return (Criteria) this;
- }
- public Criteria andAncestorsEqualTo(String value) {
- addCriterion("ancestors =", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsNotEqualTo(String value) {
- addCriterion("ancestors <>", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsGreaterThan(String value) {
- addCriterion("ancestors >", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsGreaterThanOrEqualTo(String value) {
- addCriterion("ancestors >=", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsLessThan(String value) {
- addCriterion("ancestors <", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsLessThanOrEqualTo(String value) {
- addCriterion("ancestors <=", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsLike(String value) {
- addCriterion("ancestors like", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsNotLike(String value) {
- addCriterion("ancestors not like", value, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsIn(List<String> values) {
- addCriterion("ancestors in", values, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsNotIn(List<String> values) {
- addCriterion("ancestors not in", values, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsBetween(String value1, String value2) {
- addCriterion("ancestors between", value1, value2, "ancestors");
- return (Criteria) this;
- }
- public Criteria andAncestorsNotBetween(String value1, String value2) {
- addCriterion("ancestors not between", value1, value2, "ancestors");
- return (Criteria) this;
- }
- public Criteria andDeptNameIsNull() {
- addCriterion("dept_name is null");
- return (Criteria) this;
- }
- public Criteria andDeptNameIsNotNull() {
- addCriterion("dept_name is not null");
- return (Criteria) this;
- }
- public Criteria andDeptNameEqualTo(String value) {
- addCriterion("dept_name =", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameNotEqualTo(String value) {
- addCriterion("dept_name <>", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameGreaterThan(String value) {
- addCriterion("dept_name >", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameGreaterThanOrEqualTo(String value) {
- addCriterion("dept_name >=", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameLessThan(String value) {
- addCriterion("dept_name <", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameLessThanOrEqualTo(String value) {
- addCriterion("dept_name <=", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameLike(String value) {
- addCriterion("dept_name like", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameNotLike(String value) {
- addCriterion("dept_name not like", value, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameIn(List<String> values) {
- addCriterion("dept_name in", values, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameNotIn(List<String> values) {
- addCriterion("dept_name not in", values, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameBetween(String value1, String value2) {
- addCriterion("dept_name between", value1, value2, "deptName");
- return (Criteria) this;
- }
- public Criteria andDeptNameNotBetween(String value1, String value2) {
- addCriterion("dept_name not between", value1, value2, "deptName");
- return (Criteria) this;
- }
- public Criteria andOrderNumIsNull() {
- addCriterion("order_num is null");
- return (Criteria) this;
- }
- public Criteria andOrderNumIsNotNull() {
- addCriterion("order_num is not null");
- return (Criteria) this;
- }
- public Criteria andOrderNumEqualTo(Integer value) {
- addCriterion("order_num =", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumNotEqualTo(Integer value) {
- addCriterion("order_num <>", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumGreaterThan(Integer value) {
- addCriterion("order_num >", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumGreaterThanOrEqualTo(Integer value) {
- addCriterion("order_num >=", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumLessThan(Integer value) {
- addCriterion("order_num <", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumLessThanOrEqualTo(Integer value) {
- addCriterion("order_num <=", value, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumIn(List<Integer> values) {
- addCriterion("order_num in", values, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumNotIn(List<Integer> values) {
- addCriterion("order_num not in", values, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumBetween(Integer value1, Integer value2) {
- addCriterion("order_num between", value1, value2, "orderNum");
- return (Criteria) this;
- }
- public Criteria andOrderNumNotBetween(Integer value1, Integer value2) {
- addCriterion("order_num not between", value1, value2, "orderNum");
- return (Criteria) this;
- }
- public Criteria andLeaderIsNull() {
- addCriterion("leader is null");
- return (Criteria) this;
- }
- public Criteria andLeaderIsNotNull() {
- addCriterion("leader is not null");
- return (Criteria) this;
- }
- public Criteria andLeaderEqualTo(String value) {
- addCriterion("leader =", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderNotEqualTo(String value) {
- addCriterion("leader <>", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderGreaterThan(String value) {
- addCriterion("leader >", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderGreaterThanOrEqualTo(String value) {
- addCriterion("leader >=", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderLessThan(String value) {
- addCriterion("leader <", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderLessThanOrEqualTo(String value) {
- addCriterion("leader <=", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderLike(String value) {
- addCriterion("leader like", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderNotLike(String value) {
- addCriterion("leader not like", value, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderIn(List<String> values) {
- addCriterion("leader in", values, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderNotIn(List<String> values) {
- addCriterion("leader not in", values, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderBetween(String value1, String value2) {
- addCriterion("leader between", value1, value2, "leader");
- return (Criteria) this;
- }
- public Criteria andLeaderNotBetween(String value1, String value2) {
- addCriterion("leader not between", value1, value2, "leader");
- return (Criteria) this;
- }
- public Criteria andPhoneIsNull() {
- addCriterion("phone is null");
- return (Criteria) this;
- }
- public Criteria andPhoneIsNotNull() {
- addCriterion("phone is not null");
- return (Criteria) this;
- }
- public Criteria andPhoneEqualTo(String value) {
- addCriterion("phone =", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneNotEqualTo(String value) {
- addCriterion("phone <>", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneGreaterThan(String value) {
- addCriterion("phone >", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneGreaterThanOrEqualTo(String value) {
- addCriterion("phone >=", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneLessThan(String value) {
- addCriterion("phone <", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneLessThanOrEqualTo(String value) {
- addCriterion("phone <=", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneLike(String value) {
- addCriterion("phone like", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneNotLike(String value) {
- addCriterion("phone not like", value, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneIn(List<String> values) {
- addCriterion("phone in", values, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneNotIn(List<String> values) {
- addCriterion("phone not in", values, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneBetween(String value1, String value2) {
- addCriterion("phone between", value1, value2, "phone");
- return (Criteria) this;
- }
- public Criteria andPhoneNotBetween(String value1, String value2) {
- addCriterion("phone not between", value1, value2, "phone");
- return (Criteria) this;
- }
- public Criteria andEmailIsNull() {
- addCriterion("email is null");
- return (Criteria) this;
- }
- public Criteria andEmailIsNotNull() {
- addCriterion("email is not null");
- return (Criteria) this;
- }
- public Criteria andEmailEqualTo(String value) {
- addCriterion("email =", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailNotEqualTo(String value) {
- addCriterion("email <>", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailGreaterThan(String value) {
- addCriterion("email >", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailGreaterThanOrEqualTo(String value) {
- addCriterion("email >=", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailLessThan(String value) {
- addCriterion("email <", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailLessThanOrEqualTo(String value) {
- addCriterion("email <=", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailLike(String value) {
- addCriterion("email like", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailNotLike(String value) {
- addCriterion("email not like", value, "email");
- return (Criteria) this;
- }
- public Criteria andEmailIn(List<String> values) {
- addCriterion("email in", values, "email");
- return (Criteria) this;
- }
- public Criteria andEmailNotIn(List<String> values) {
- addCriterion("email not in", values, "email");
- return (Criteria) this;
- }
- public Criteria andEmailBetween(String value1, String value2) {
- addCriterion("email between", value1, value2, "email");
- return (Criteria) this;
- }
- public Criteria andEmailNotBetween(String value1, String value2) {
- addCriterion("email not between", value1, value2, "email");
- 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 andDelFlagIsNull() {
- addCriterion("del_flag is null");
- return (Criteria) this;
- }
- public Criteria andDelFlagIsNotNull() {
- addCriterion("del_flag is not null");
- return (Criteria) this;
- }
- public Criteria andDelFlagEqualTo(String value) {
- addCriterion("del_flag =", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagNotEqualTo(String value) {
- addCriterion("del_flag <>", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagGreaterThan(String value) {
- addCriterion("del_flag >", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagGreaterThanOrEqualTo(String value) {
- addCriterion("del_flag >=", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagLessThan(String value) {
- addCriterion("del_flag <", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagLessThanOrEqualTo(String value) {
- addCriterion("del_flag <=", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagLike(String value) {
- addCriterion("del_flag like", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagNotLike(String value) {
- addCriterion("del_flag not like", value, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagIn(List<String> values) {
- addCriterion("del_flag in", values, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagNotIn(List<String> values) {
- addCriterion("del_flag not in", values, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagBetween(String value1, String value2) {
- addCriterion("del_flag between", value1, value2, "delFlag");
- return (Criteria) this;
- }
- public Criteria andDelFlagNotBetween(String value1, String value2) {
- addCriterion("del_flag not between", value1, value2, "delFlag");
- return (Criteria) this;
- }
- public Criteria andCreateByIsNull() {
- addCriterion("create_by is null");
- return (Criteria) this;
- }
- public Criteria andCreateByIsNotNull() {
- addCriterion("create_by is not null");
- return (Criteria) this;
- }
- public Criteria andCreateByEqualTo(String value) {
- addCriterion("create_by =", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByNotEqualTo(String value) {
- addCriterion("create_by <>", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByGreaterThan(String value) {
- addCriterion("create_by >", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByGreaterThanOrEqualTo(String value) {
- addCriterion("create_by >=", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByLessThan(String value) {
- addCriterion("create_by <", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByLessThanOrEqualTo(String value) {
- addCriterion("create_by <=", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByLike(String value) {
- addCriterion("create_by like", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByNotLike(String value) {
- addCriterion("create_by not like", value, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByIn(List<String> values) {
- addCriterion("create_by in", values, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByNotIn(List<String> values) {
- addCriterion("create_by not in", values, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByBetween(String value1, String value2) {
- addCriterion("create_by between", value1, value2, "createBy");
- return (Criteria) this;
- }
- public Criteria andCreateByNotBetween(String value1, String value2) {
- addCriterion("create_by not between", value1, value2, "createBy");
- 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 andUpdateByIsNull() {
- addCriterion("update_by is null");
- return (Criteria) this;
- }
- public Criteria andUpdateByIsNotNull() {
- addCriterion("update_by is not null");
- return (Criteria) this;
- }
- public Criteria andUpdateByEqualTo(String value) {
- addCriterion("update_by =", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByNotEqualTo(String value) {
- addCriterion("update_by <>", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByGreaterThan(String value) {
- addCriterion("update_by >", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByGreaterThanOrEqualTo(String value) {
- addCriterion("update_by >=", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByLessThan(String value) {
- addCriterion("update_by <", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByLessThanOrEqualTo(String value) {
- addCriterion("update_by <=", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByLike(String value) {
- addCriterion("update_by like", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByNotLike(String value) {
- addCriterion("update_by not like", value, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByIn(List<String> values) {
- addCriterion("update_by in", values, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByNotIn(List<String> values) {
- addCriterion("update_by not in", values, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByBetween(String value1, String value2) {
- addCriterion("update_by between", value1, value2, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateByNotBetween(String value1, String value2) {
- addCriterion("update_by not between", value1, value2, "updateBy");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeIsNull() {
- addCriterion("update_time is null");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeIsNotNull() {
- addCriterion("update_time is not null");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeEqualTo(Date value) {
- addCriterion("update_time =", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeNotEqualTo(Date value) {
- addCriterion("update_time <>", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeGreaterThan(Date value) {
- addCriterion("update_time >", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
- addCriterion("update_time >=", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeLessThan(Date value) {
- addCriterion("update_time <", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
- addCriterion("update_time <=", value, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeIn(List<Date> values) {
- addCriterion("update_time in", values, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeNotIn(List<Date> values) {
- addCriterion("update_time not in", values, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeBetween(Date value1, Date value2) {
- addCriterion("update_time between", value1, value2, "updateTime");
- return (Criteria) this;
- }
- public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
- addCriterion("update_time not between", value1, value2, "updateTime");
- return (Criteria) this;
- }
- }
- /**
- * This class was generated by MyBatis Generator.
- * This class corresponds to the database table sys_dept
- *
- * @mbg.generated do_not_delete_during_merge
- */
- public static class Criteria extends GeneratedCriteria {
- protected Criteria() {
- super();
- }
- }
- /**
- * This class was generated by MyBatis Generator.
- * This class corresponds to the database table sys_dept
- *
- * @mbg.generated
- */
- 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);
- }
- }
- }
|