改正 DbRecord 的 toString 中的类名。

dev
ZhouXY108 2023-09-22 08:50:26 +08:00
parent bcb6fb6939
commit cba6c797a1
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();
}
}