publish 2.0.0.rc11

This commit is contained in:
曾文豪
2024-07-29 10:31:03 +08:00
parent 6127cd50a9
commit 1412782327
13 changed files with 24 additions and 24 deletions

View File

@@ -27,7 +27,7 @@ public class DingResponse<T> {
* @param path
* @return
*/
public T getRawValue(String path, Class<T> tClass) {
public <E> E getRawValue(String path, Class<E> tClass) {
return JSONUtil.parse(getRawBody()).getByPath(path, tClass);
}