修改get接口的起始时间及结束时间错误

This commit is contained in:
wangjie 2023-11-13 16:10:36 +08:00
parent 1b28ccca97
commit 008a58c32f
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ class BaseApi:
params = {
"page": 1,
"size": 20,
'startTime': TimeUtil.get_current_time_unix(),
'endTime': TimeUtil.get_seven_days_ago_time_unix(),
'startTime': TimeUtil.get_seven_days_ago_time_unix(),
'endTime': TimeUtil.get_current_time_unix(),
**params
}
return params