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

@@ -6,7 +6,7 @@
<parent>
<groupId>com.tiesheng.springboot-parent</groupId>
<artifactId>springboot-parent</artifactId>
<version>2.0.0.rc10</version>
<version>2.0.0.rc11</version>
</parent>
<artifactId>springboot-platform</artifactId>

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);
}