fix: 修改定时任务时间

This commit is contained in:
chenwj113 2023-05-16 22:28:00 +08:00
parent d4e5e2c73d
commit 564e8b5f06
1 changed files with 3 additions and 3 deletions

View File

@ -37,15 +37,15 @@ def get_data_job(lottery_type='pls'):
print(f'issue:{draw_issue}已经存在') print(f'issue:{draw_issue}已经存在')
@repeat(every().day.at("18:01")) @repeat(every().day.at("00:01"))
def pls_job(): def pls_job():
get_data_job(lottery_type='pls') get_data_job(lottery_type='pls')
@repeat(every().day.at("18:02")) @repeat(every().day.at("00:02"))
def plw_job(): def plw_job():
get_data_job(lottery_type='plw') get_data_job(lottery_type='plw')
@repeat(every().day.at("18:03")) @repeat(every().day.at("00:03"))
def sd_job(): def sd_job():
get_data_job(lottery_type='sd') get_data_job(lottery_type='sd')