module ApplicationHelper
def utc_time_to_local utctime
# 将数据库中的UTC时间转换为本地时间
return utctime.localtime.strftime(format='%F %T')
end