功能说明
平台生成的业务对象对应的Mybatis文件:
Eg:
BasItem.java->BasItemMapper.xml->BasItemMapper.java->BasItemExample.java->BasItemService.java->BasItemServiceImpl.java
范例说明
- Mybatis查询:以BasItem对象为例### 1. example.and()—– 最外面连接符为 and 多个condition的连接符为 and
//创建 example
BasItemExample example = BasItemExample.create();
//排序字段
example.setOrderByClause(” ITEM_CODE , CREATE_TIME”);
//查询条件 1、添加条件 ITEM_NAME=’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
//2、添加条件 CREATOR=’linjx’
.andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? and CREATOR = ?) order by ITEM_CODE, CREATE_TIME
==> Parameters: 电视机(String), linjx(String) - example.andOr() —– 最外面连接符为 and 多个condition的连接符为 or
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件
example.andOr().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
.andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? OR CREATOR = ?)
==> Parameters: 电视机(String), linjx(String) - example.or() orAnd() —– 最外面连接符为 or多个condition的连接符为 and
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件
example.or().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
.andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? And CREATOR = ?)
==> Parameters: 电视机(String), linjx(String)
由于代码上用or()加了2个条件,但是在or()添加条件之前example内不存在其他条件所以 最外面的连接符被系统去掉.
//创建 example
BasItemExample example = BasItemExample.create();
//条件 ITEM_NAME=‘电视机’ and CREATOR=‘linjx’ or ITEM_NAME=‘BOOK’
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQ, “电视机”)
.andCreateCondition(“CREATOR”, Operation.EQ, “linjx”);
example.or(). andCreateCondition(“ITEM_NAME”, Operation.EQ, “book”)
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME = ? And CREATOR = ?) or (ITEM_NAME=?)
==> Parameters: 电视机(String), linjx(String) , 衣服(String)
由于Example的方式并不能完全满足复杂SQL查询,所以平台扩展了高级拼接查询语句. - 不带参数的查询
example = BasItemExample.create();
//查询条件
example.and().andCreateCondition(” ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code is not null)”);
//example 查询
basItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code is not null)
- 带参数的查询
example = BasItemExample.create();
//查询条件
String sqlCondition = ” ITEM_NAME=?”
+ “ and ITEM_CODE in(select a.ITEM_CODE from WMS_INB_ASN_DETAIL a where a.bar_code in(?,?,?))”; //in 语句知道了列表个数
sqlCondition += ” or (ITEM_NAME is not null and BAR_CODE is not null and ITEM_NAME like ?)”;
List
也可以使用:
example.and().andItemNameEqualTo(“电视机”);
以上2行代码一样的效果。
第2行代码是mybatis代码生成器默认的添加条件的方法,
第1行代码是平台扩展的方法。
7. EQIC操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME<>’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.EQIC, “book”);
//example 查询
List
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) = ?)
==> Parameters: BOOK(String)
和 EQ操作符不一样的是 EQIC 操作符 忽略大小写.
8. NOTEQ操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME<>’电视机’
example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTEQ, “电视机”);
//example 查询
List
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME =<>?) order by ITEM_CODE, CREATE_TIME
==> Parameters: 电视机(String)
- IN操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME in(‘book‘,’good’,’bad’ )
example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,”book”,”good”,”bad”);
或:
Object[] itemNames = {“book”,”good”,”bad”};
example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,itemNames);
或:
Listnames = Lists.newArrayList();
names.add(“book”);names.add(“good”);names.add(“bad”);
example.and().andCreateCondition(“ITEM_NAME”, Operation.IN,names);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME in(?,?,?))
==> Parameters: book(String), good(String), bad(String) - NOTIN操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME in(‘book‘,’good’,’bad’ )
example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,”book”,”good”,”bad”);
或:
Object[] itemNames = {“book”,”good”,”bad”};
example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,itemNames);
或:Listnames = Lists.newArrayList();
names.add(“book”);names.add(“good”);names.add(“bad”);
example.and().andCreateCondition(“ITEM_NAME”, Operation.NOTIN,names);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME not in(?,?,?))
==> Parameters: book(String), good(String), bad(String) - ISNULL操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME is null
example.and().andCreateCondition(“ITEM_NAME”, Operation.ISNULL);
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME is null) - ISNOTNULL操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME is null
example.and().andCreateCondition(“ITEM_NAME”, Operation. ISNOTNULL);
//example 查询
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME is not null) - LIKE操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME like ‘%bo%’
example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE, “bo”);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
==> Parameters: %bo% (String) - LIKEIC操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 upper(ITEM_NAME) like ‘%BO%’
example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKEIC);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
==> Parameters: %BO% (String) - LIKE_START操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME like ‘%bo’
example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE_START, “bo”);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
==> Parameters: %bo (String) - LIKE_START_IC操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 upper(ITEM_NAME) like ‘%BO’
example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKE_START_IC);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
==> Parameters: %BO (String) - LIKE_END操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 ITEM_NAME like ‘bo%’
example.and().andCreateCondition(“ITEM_NAME”, Operation.LIKE_END, “bo”);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (ITEM_NAME like ?)
==> Parameters: bo% (String) - LIKE_END_IC操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 upper(ITEM_NAME) like ‘BO%’
example.and().andCreateCondition(“ITEM_NAME”, Operation. LIKE_START_IC);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
==> Parameters: %BO (String) - GT操作符 (大于)
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 INBOUND_QC_QTY > 12
example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation.GT, 12);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (INBOUND_QC_QTY >?)
==> Parameters: 12 (Integer) - GE操作符 (大于等于)
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 INBOUND_QC_QTY > =12
example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation. GE,12);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
==> Parameters: 12 (Integer) - LT操作符 (小于)
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 INBOUND_QC_QTY <12 example.and().andCreateCondition(" INBOUND_QC_QTY ", Operation.LT, 12); ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (INBOUND_QC_QTY >?)
==> Parameters: 12 (Integer) - LE操作符 (小于等于)
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、添加条件 INBOUND_QC_QTY <=12
example.and().andCreateCondition(” INBOUND_QC_QTY “, Operation. LE,12);
ListbasItems = basItemService.find(example);
//SQL: select * from BAS_ITEM WHERE (upper(ITEM_NAME) like ? )
==> Parameters: 12 (Integer) - GELE操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、INBOUND_QC_QTY >=12 and INBOUND_QC_QTY <=34
example.and().andCreateCondition(” INBOUND_QC_QTY “,
Operation.GELE ,12,34);
ListbasItems = basItemService.find(example);
//SQL:
select * from BAS_ITEM WHERE (
INBOUND_QC_QTY >=? And INBOUND_QC_QTY <=?)==> Parameters: 12 (Integer), 34 (Integer)
-
GTLT操作符
//创建 example
BasItemExample example = BasItemExample.create();
//查询条件 1、INBOUND_QC_QTY >12 and INBOUND_QC_QTY <34 example.and().andCreateCondition(" INBOUND_QC_QTY ", Operation.GTLT 12,34); ListbasItems = basItemService.find(example);
//SQL:
select * from BAS_ITEM where(
INBOUND_QC_QTY >? And INBOUND_QC_QTY <?)==> Parameters: 12 (Integer), 34 (Integer)