package xtime import ( "time" ) // 设置系统时区 func SetTimeOffset(offset int) { time.Local = time.FixedZone("CST", offset) }