This commit is contained in:
张秉卓
2025-12-18 10:47:28 +08:00
parent 44ec0dc23a
commit 63963a1a33
2 changed files with 41 additions and 6 deletions

View File

@ -491,7 +491,7 @@ public class DataLogTools {
Object old = mapper.selectById(id);
if(old==null) return null;
T dto = (T) tabInfo.toDto(old);
initJoinValues(tabInfo,dto,SetUtils.of(klazz), full);
// initJoinValues(tabInfo,dto,SetUtils.of(klazz), full);
return dto;
}