时间操作
//时间戳转时间格式
time.Unix(1586501854,0).Format("2006-01-02 15:04:05") //2020-04-10 14:57:34
//时间格式转时间戳
//UTC时区版本
t, _ := time.Parse("2006-01-02 15:04:05", "2020-04-10 14:57:34")
t.Unix() //1586530654
//东八区版本
var cstEastZone8 = time.FixedZone("CST", 8*3600)
t, _ := time.ParseInLocation(TIMESTR, "2020-07-19 11:03:40", cstEastZone8)
t.Unix() //1595127820