date_format(create_time,'%Y-%m-%d') 去除掉时间字段的时分秒
unix_timestamp(create_time) 将时间字段转化成时间戳 提示 mysql数据库中只精确到了秒 若想用毫秒请自行*1000
from_unixtime(#{createTime,jdbcType=BIGINT}) 将时间戳转化成datetime格式 精度同上
date_format(create_time,'%Y-%m-%d') 去除掉时间字段的时分秒
unix_timestamp(create_time) 将时间字段转化成时间戳 提示 mysql数据库中只精确到了秒 若想用毫秒请自行*1000
from_unixtime(#{createTime,jdbcType=BIGINT}) 将时间戳转化成datetime格式 精度同上