|
|
@@ -153,14 +153,16 @@ func PlayletVideoOrderMonth() { |
|
|
|
syscfgDb.MasterListCfgUpdate(uid, keyIsEnd, "") |
|
|
|
runtime = time.Unix(timeRange["start"], 0).Format("2006-01-02 15:04:05") |
|
|
|
} |
|
|
|
syscfgDb.MasterListCfgUpdate(uid, keyStart, time.Now().Format("2006-01-02 15:04:05")) |
|
|
|
|
|
|
|
//当前是否结束了 |
|
|
|
isEnd := syscfgDb.MasterListCfgGetOneData(uid, keyIsEnd) |
|
|
|
if isEnd == "1" { |
|
|
|
return |
|
|
|
} |
|
|
|
var ( |
|
|
|
beginTime int64 = utils.TimeStdParseUnix(runtime) - 86400 |
|
|
|
endTime int64 = utils.TimeStdParseUnix(runtime) |
|
|
|
beginTime int64 = utils.TimeStdParseUnix(runtime) |
|
|
|
endTime int64 = utils.TimeStdParseUnix(runtime) + 86400 |
|
|
|
pageNo int = 1 |
|
|
|
pageSize int = 200 |
|
|
|
) |
|
|
|