Commit e2bdac24 by 王军业

12145114

1 parent 219276ec
......@@ -19,7 +19,7 @@ public class MilliDateTypeHandler extends BaseTypeHandler<Date>{
public void setNonNullParameter(PreparedStatement ps, int i, Date date, JdbcType jdbcType)
throws SQLException {
//String dateS = DateUtil.FORMAT_YYYY_MM_DD.format(date);
System.out.println("=======adsa======");
//System.out.println("=======adsa======");
java.sql.Date sqldate = new java.sql.Date(date.getTime());
ps.setDate(i, sqldate);
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!