...
|
...
|
@@ -137,10 +137,10 @@ def get_nowTimestamp(): |
|
|
return int(round(t * 1000))
|
|
|
|
|
|
def get_January_timestamp():
|
|
|
return int(time.mktime(time.strptime('2020-04-01 00:00:00', '%Y-%m-%d %H:%M:%S'))*1000)
|
|
|
return int(time.mktime(time.strptime('2021-04-01 00:00:00', '%Y-%m-%d %H:%M:%S'))*1000)
|
|
|
|
|
|
def get_Decembe_timestamp():
|
|
|
return int(time.mktime(time.strptime('2021-3-31 23:59:59', '%Y-%m-%d %H:%M:%S'))*1000)
|
|
|
return int(time.mktime(time.strptime('2022-3-31 23:59:59', '%Y-%m-%d %H:%M:%S'))*1000)
|
|
|
|
|
|
|
|
|
#获取secret用于子系统单点登录
|
...
|
...
|
@@ -240,3 +240,5 @@ def get_saleDate_bigger_today(*args_v): |
|
|
return 0
|
|
|
else:
|
|
|
return 1
|
|
|
|
|
|
|
...
|
...
|
|