Commit 37cd0bcc authored by yanzg's avatar yanzg

消除成功接收处理

parent 794ba232
......@@ -183,7 +183,8 @@ public class AllBeanRowMapper<T> implements RowMapper<T> {
if (this.isMapping) {
Object value = JdbcUtils.getResultSetValue(rs, index);
if (value instanceof Date) {
value = DateHelper.getDateTimeString((Date) value);
String toValue = String.valueOf(value);
value = toValue.replace("T", " ");
}
((Map) mappedObject).put(getCamelCase(column), value);
} else if (!this.mappedIsFields.containsKey(underscoredName)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment