改正 DbRecord 的 toString 中的类名。

dev
ZhouXY108 2024-03-18 20:30:31 +08:00
parent bcb6fb6939
commit 033de5a44f
1 changed files with 3 additions and 1 deletions

View File

@ -68,8 +68,10 @@ public class DbRecord extends AbstractMapWrapper<String, Object, DbRecord> {
return this;
}
private static final String STR_PREFIX = DbRecord.class.getName() + '@';
@Override
public String toString() {
return "xyz.zhouxy.plusone.commons.jdbc.DbRecord@" + super.toString();
return STR_PREFIX + super.toString();
}
}