一、年月日
Java
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Mybatis
<if test="record.reportdate != null" > reportdate = #{record.reportdate, jdbcType=DATE} </if>
二、年月日时分秒
Java
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Mybatis
<if test="record.reportdate != null" > reportdate = #{record.reportdate, jdbcType=TIMESTAMP} </if>