Pre Merge pull request !553 from andy/N/A

pull/553/MERGE
andy 2025-05-12 06:09:39 +00:00 committed by Gitee
commit 84b0a34a4b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 3 additions and 0 deletions

View File

@ -208,6 +208,9 @@ public class ReflectUtils
{
args[i] = Convert.toBool(args[i]);
}
else if (cs[i] == BigDecimal.class) {
args[i] = Convert.toBigDecimal(args[i]);
}
}
}
return (E) method.invoke(obj, args);