改正 DbRecord 的 toString 中的类名。
This commit is contained in:
parent
bcb6fb6939
commit
cba6c797a1
@ -68,8 +68,10 @@ public class DbRecord extends AbstractMapWrapper<String, Object, DbRecord> {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static final String STR_PREFIX = DbRecord.class.getName() + '@';
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "xyz.zhouxy.plusone.commons.jdbc.DbRecord@" + super.toString();
|
return STR_PREFIX + super.toString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user