这是什么数据库处理方法,还是mybatis吗

下面的写好是怎么处理查询的,还是mybatis吗,怎么在xml文件中看不到查询的sql语句了。

 CaiyinProxy entity=new CaiyinProxy();
        entity.setId(proxyId);
        CaiyinProxy order = baseMapper.selectOne(entity);
        Wrapper<UserInfo> wrapper=new EntityWrapper<UserInfo>();
        wrapper.eq(UserInfo.Fields.id.toString(), order.getUserId());
        UserInfo userInfo=userInfoService.selectOne(wrapper);

是MyBatis只是一款MyBatis的增强 crud 工具包的Mybatis-Plus,简化 增 删 改 查 操作