EntityBuilder支持下划线小写字段转化

This commit is contained in:
redkale
2024-03-24 21:05:41 +08:00
parent 07cdf26aaf
commit 665b295a96
2 changed files with 35 additions and 2 deletions

View File

@@ -67,7 +67,8 @@ public class CacheInstance implements Service {
}
@Cached(key = "info_#{id}_file#{files.one}", localExpire = "30", remoteExpire = "60", timeUnit = TimeUnit.MILLISECONDS)
public CompletableFuture<Map<String, Integer>> getInfo2Async(ParamBean bean, int id, List<String> idList, Map<String, File> files) throws IOException, InstantiationException {
public CompletableFuture<Map<String, Integer>> getInfo2Async(ParamBean bean,
int id, List<String> idList, Map<String, File> files) throws IOException, InstantiationException {
return CompletableFuture.completedFuture(null);
}