hk-cdp 1.0.95__py3-none-any.whl → 1.0.97__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hk_cdp/models/db_models/sync/sync_user_data_model.py +3 -3
- hk_cdp/models/db_models/trade/trade_order_model.py +1 -1
- hk_cdp/models/db_models/trade/trade_status_info_model.py +2 -2
- hk_cdp/models/db_models/tt/tt_rds_trade_model.py +3 -1
- hk_cdp/models/db_models/tt/tt_source_buyer_model.py +11 -1
- {hk_cdp-1.0.95.dist-info → hk_cdp-1.0.97.dist-info}/METADATA +1 -1
- {hk_cdp-1.0.95.dist-info → hk_cdp-1.0.97.dist-info}/RECORD +10 -10
- {hk_cdp-1.0.95.dist-info → hk_cdp-1.0.97.dist-info}/LICENSE +0 -0
- {hk_cdp-1.0.95.dist-info → hk_cdp-1.0.97.dist-info}/WHEEL +0 -0
- {hk_cdp-1.0.95.dist-info → hk_cdp-1.0.97.dist-info}/top_level.txt +0 -0
|
@@ -12,7 +12,7 @@ from seven_cloudapp_frame.models.cache_model import *
|
|
|
12
12
|
|
|
13
13
|
class SyncUserDataModel(CacheModel):
|
|
14
14
|
def __init__(self, db_connect_key='db_cloudapp', db_config_dict=None, sub_table=None, db_transaction=None, context=None, is_auto=False):
|
|
15
|
-
super(SyncUserDataModel, self).__init__(
|
|
15
|
+
super(SyncUserDataModel, self).__init__(SyncUserData, sub_table)
|
|
16
16
|
if not db_config_dict:
|
|
17
17
|
db_config_dict = config.get_value(db_connect_key)
|
|
18
18
|
self.db = MySQLHelper(self.convert_db_config(db_config_dict, is_auto))
|
|
@@ -22,9 +22,9 @@ class SyncUserDataModel(CacheModel):
|
|
|
22
22
|
|
|
23
23
|
# 方法扩展请继承此类
|
|
24
24
|
|
|
25
|
-
class
|
|
25
|
+
class SyncUserData:
|
|
26
26
|
def __init__(self):
|
|
27
|
-
super(
|
|
27
|
+
super(SyncUserData, self).__init__()
|
|
28
28
|
self.id = 0 # id
|
|
29
29
|
self.business_id = 0 # 商家标识
|
|
30
30
|
self.store_id = 0 # 店铺标识
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
#此文件由rigger自动生成
|
|
18
18
|
from seven_framework.mysql import MySQLHelper
|
|
19
19
|
from seven_framework.base_model import *
|
|
20
|
+
from seven_cloudapp_frame.models.cache_model import *
|
|
20
21
|
|
|
21
|
-
|
|
22
|
-
class TradeStatusInfoModel(BaseModel):
|
|
22
|
+
class TradeStatusInfoModel(CacheModel):
|
|
23
23
|
def __init__(self, db_connect_key='db_cloudapp', db_config_dict=None, sub_table=None, db_transaction=None, context=None, is_auto=False):
|
|
24
24
|
super(TradeStatusInfoModel, self).__init__(TradeStatusInfo, sub_table)
|
|
25
25
|
if not db_config_dict:
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
#此文件由rigger自动生成
|
|
2
2
|
from seven_framework.mysql import MySQLHelper
|
|
3
3
|
from seven_framework.base_model import *
|
|
4
|
+
from seven_cloudapp_frame.models.cache_model import *
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
|
|
7
|
+
class TtRdsTradeModel(CacheModel):
|
|
6
8
|
def __init__(self, db_connect_key='db_cloudapp', db_config_dict=None, sub_table=None, db_transaction=None, context=None, is_auto=False):
|
|
7
9
|
super(TtRdsTradeModel, self).__init__(TtRdsTrade, sub_table)
|
|
8
10
|
if not db_config_dict:
|
|
@@ -1,8 +1,18 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
"""
|
|
3
|
+
@Author: HuangJianYi
|
|
4
|
+
@Date: 2024-12-18 14:23:22
|
|
5
|
+
@LastEditTime: 2025-07-16 18:15:16
|
|
6
|
+
@LastEditors: HuangJianYi
|
|
7
|
+
@Description:
|
|
8
|
+
"""
|
|
1
9
|
#此文件由rigger自动生成
|
|
2
10
|
from seven_framework.mysql import MySQLHelper
|
|
3
11
|
from seven_framework.base_model import *
|
|
12
|
+
from seven_cloudapp_frame.models.cache_model import *
|
|
4
13
|
|
|
5
|
-
|
|
14
|
+
|
|
15
|
+
class TtSourceBuyerModel(CacheModel):
|
|
6
16
|
def __init__(self, db_connect_key='db_cloudapp', db_config_dict=None, sub_table=None, db_transaction=None, context=None, is_auto=False):
|
|
7
17
|
super(TtSourceBuyerModel, self).__init__(TtSourceBuyer, sub_table)
|
|
8
18
|
if not db_config_dict:
|
|
@@ -44,7 +44,7 @@ hk_cdp/models/db_models/store/store_base_model.py,sha256=Gw7Pjo3-bPT134uJ5y6Ckp4
|
|
|
44
44
|
hk_cdp/models/db_models/store/store_goods_model.py,sha256=emtShP8-3cjrWXCMi-ueyk85wkEe62I8J-jUVAp657U,1910
|
|
45
45
|
hk_cdp/models/db_models/store/store_prefix_log_model.py,sha256=lJgN9S2_azswzUkrC8zpfV-uT_Mo3gOg1PvEtValVK8,1225
|
|
46
46
|
hk_cdp/models/db_models/sync/__init__.py,sha256=WLzJwH-mPE02FCbB8WCZJxdlPZvBuqv6lLHrVNM-tsc,35
|
|
47
|
-
hk_cdp/models/db_models/sync/sync_user_data_model.py,sha256=
|
|
47
|
+
hk_cdp/models/db_models/sync/sync_user_data_model.py,sha256=BJRYARLfTLXQhfejkU6kEXPwgR3fWp6WHOBPsEaNexM,1510
|
|
48
48
|
hk_cdp/models/db_models/taobao/__init__.py,sha256=3Qil9gOBrN_URHSz48VG4fnpcmDZ3e9ZWei-6Z37jqQ,156
|
|
49
49
|
hk_cdp/models/db_models/taobao/taobao_rds_item_model.py,sha256=VLs0Jd0rcZeTJ-ljmTP9nCVkMslZWFkBcd7RWaGj0Xc,1956
|
|
50
50
|
hk_cdp/models/db_models/taobao/taobao_rds_refund_model.py,sha256=1hCIIaIz3Ud_2HsuuMMMc3Ea9F7mY0LRL3a1HdQpgus,1727
|
|
@@ -54,20 +54,20 @@ hk_cdp/models/db_models/taobao/taobao_source_history_member_model.py,sha256=ERej
|
|
|
54
54
|
hk_cdp/models/db_models/trade/__init__.py,sha256=QxTCD3TJRFF4SZU83T-lATdDIKTuTmFopGpRs_Lps2E,101
|
|
55
55
|
hk_cdp/models/db_models/trade/trade_give_info_model.py,sha256=l70K-aiyOkNRy2NPLGDOG-vUnM6Vw0NqAdbwW7cxT0k,1868
|
|
56
56
|
hk_cdp/models/db_models/trade/trade_info_model.py,sha256=fX4OiHjaFx8DnOj0SMq-LTZRa-lVjz2mLvsjJM1qw_Y,4713
|
|
57
|
-
hk_cdp/models/db_models/trade/trade_order_model.py,sha256=
|
|
58
|
-
hk_cdp/models/db_models/trade/trade_status_info_model.py,sha256=
|
|
57
|
+
hk_cdp/models/db_models/trade/trade_order_model.py,sha256=ibE4pCdWcIPow6kBpgRayHgFuOG4xSBtcLD7Bd9YHhE,2413
|
|
58
|
+
hk_cdp/models/db_models/trade/trade_status_info_model.py,sha256=hT7rXqiqu6R8Dv29e3wYYodyUjli7f4BHi-kHUigwtY,1961
|
|
59
59
|
hk_cdp/models/db_models/tt/__init__.py,sha256=udhmTaFhq9P2bisJyTJiIwebDMEzc-HqBZdGmARZIEQ,136
|
|
60
60
|
hk_cdp/models/db_models/tt/tt_rds_item_model.py,sha256=WCgZIo1lBgR1VWfS-8SALXWcIFaYPTO9VHW6qFLAAaQ,2004
|
|
61
61
|
hk_cdp/models/db_models/tt/tt_rds_refund_model.py,sha256=y51lwWDHHLIrNw-YjIKTm3EuS3PbWcIl-ZE_S9LYCBE,1987
|
|
62
|
-
hk_cdp/models/db_models/tt/tt_rds_trade_model.py,sha256=
|
|
63
|
-
hk_cdp/models/db_models/tt/tt_source_buyer_model.py,sha256=
|
|
62
|
+
hk_cdp/models/db_models/tt/tt_rds_trade_model.py,sha256=BBc0uHI7VDRWRcCGZHniWtkk3-ToDr6hKGhQwEiryvY,1948
|
|
63
|
+
hk_cdp/models/db_models/tt/tt_source_buyer_model.py,sha256=xftM1m2DMIQVyw6y1vJgNlVqqL63k8iMgdLpg5GiI9w,1779
|
|
64
64
|
hk_cdp/models/db_models/tt/tt_source_history_member_model.py,sha256=jMw8QqyG84rx0Jdtg7RHwYaNxz_ylLA0UjkhvGsqzAc,2080
|
|
65
65
|
hk_cdp/models/db_models/user/__init__.py,sha256=O_F1_TiR_075ATAHcahxTKJwUdYeY-QzJqzO0EbsaCM,68
|
|
66
66
|
hk_cdp/models/db_models/user/user_data_model.py,sha256=Z8Hr9xarLXvlKWKV0o25KVVVJiiOVyLOwYY7KfNLDrs,2742
|
|
67
67
|
hk_cdp/models/db_models/user/user_info_model.py,sha256=TywpvlFGkch9hO_szyhin-ed4xfTWBM7L59IU96SfxU,4138
|
|
68
68
|
hk_cdp/models/db_models/user/user_trends_model.py,sha256=oxJCBnJQEvFr1_heV_cxRrPIic6_oSoLqARc6ldp2LM,1592
|
|
69
|
-
hk_cdp-1.0.
|
|
70
|
-
hk_cdp-1.0.
|
|
71
|
-
hk_cdp-1.0.
|
|
72
|
-
hk_cdp-1.0.
|
|
73
|
-
hk_cdp-1.0.
|
|
69
|
+
hk_cdp-1.0.97.dist-info/LICENSE,sha256=hKHSuDoDoyOk6vOrpkYnOXZ640PvhUa-BTQbRRtFsUk,1061
|
|
70
|
+
hk_cdp-1.0.97.dist-info/METADATA,sha256=v1Vd7L28GxO-xjYQrK-gtMRfK2Ggc2LM4DbIHBNWl78,7101
|
|
71
|
+
hk_cdp-1.0.97.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
|
72
|
+
hk_cdp-1.0.97.dist-info/top_level.txt,sha256=omzIr_m5qnzhfcdscOVr4P4JUB49wlP6KztqvlqDntw,7
|
|
73
|
+
hk_cdp-1.0.97.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|