From 15108a006dad70f524cae2fbe208e7fde5d99ebf Mon Sep 17 00:00:00 2001 From: lwl0608 Date: Wed, 9 Oct 2024 21:01:39 +0800 Subject: [PATCH] fix --- vas/calc_third_partner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vas/calc_third_partner.py b/vas/calc_third_partner.py index 0527a74..34b4bfc 100644 --- a/vas/calc_third_partner.py +++ b/vas/calc_third_partner.py @@ -97,7 +97,7 @@ select mid, sum(`change`) as income from vas_ch_income where mid in (%s) and ct> return mid_income_map def proc(self): - tp_uids = [983565, 231638] + tp_uids = [991080] tp_mids = list() for uid in tp_uids: tp_mids.append(self.uid2mid(uid)) @@ -124,8 +124,8 @@ select mid, sum(`change`) as income from vas_ch_income where mid in (%s) and ct> # 收入 mid_income_map = self.get_streamer_income( streamer_mids, - get_ts_by_str("2024-09-01 00:00:00"), - get_ts_by_str("2024-10-01 00:00:00") + get_ts_by_str("2024-10-01 00:00:00"), + get_ts_by_str("2024-11-01 00:00:00") ) print(mid_income_map)