方法:public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {if (Object.class.equals(method.getDeclaringClass())) {return method.invoke(this, args)}final MapperMethod mapperMethod = cachedMapperMethod(method)

return mapperMethod.execute(sqlSession, args)}