MybatisPlus常用方法 分页page,范围查询between,模糊查询like,条件查询eq,ne,gt,排序 orderBy以及MybatisPlus生成代码等
//查询所有Listlist1=pmsProductService.list(newQueryWrapper());//根据条件查询eqListlist2=pmsProductService.list(newQueryWrapper().eq("id",2));//关键字查询like//左likelift%t,右likeRightt%//notLike不包含Listlist3=pmsProduct