欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用mybatis****Example类,(或者)or条件查询

程序员文章站 2022-03-11 18:45:53
...

使用Example类,or条件查询

	SetmealExample setmealExample=new SetmealExample();
	
	setmealExample.or().andNameLike("xxx");
	setmealExample.or().andCodeLike("ddd"); 
	setmealExample.or().andHelpCodeLike("条件");
	
	Page<Setmeal> page= (Page<Setmeal>) setmealMapper.selectByExample(setmealExample);