caippppppppppp

Results 1 comments of caippppppppppp

![image](https://user-images.githubusercontent.com/125541480/219522742-2cf9182f-148e-462e-acd4-ab9c490c7f36.png) 建议通过Class mapperInterface 获取所有方法名,拼接后通过Configuration类 getMappedStatement(String id, boolean validateIncompleteStatements) 获取MappedStatement ```java Method[] methods = mapperInterface.getMethods(); for (Method method : methods) { try { String id = prefix + "." + method.getName();...