提现资产与角色信息增量返回 dongjie;新增 fund-freeze-mine/ledger 只读 API,不改扣款逻辑。 Co-authored-by: Cursor <cursoragent@cursor.com>
151 lines
3.3 KiB
Python
151 lines
3.3 KiB
Python
"""users.views package aggregate entry - re-export all submodule symbols.
|
|
|
|
Preserves external `from users.views import X` for users/urls.py and jituan/urls.py.
|
|
"""
|
|
|
|
from .auth import (
|
|
DashouZhuceView,
|
|
GuanshiRegisterView,
|
|
GuanshiYaoqingDashouListView,
|
|
WechatLoginAndDashouRegisterView,
|
|
WechatLoginAndGuanshiRegisterView,
|
|
WechatMiniProgramLoginView,
|
|
WeixinOfficialCallbackView,
|
|
ZuzhangXinxiView,
|
|
ZuzhangZhuceView,
|
|
)
|
|
|
|
from .user_info import (
|
|
BossBiaoshiView,
|
|
DashouGengxinView,
|
|
DashouJianquanView,
|
|
DashouXinxiAPIView,
|
|
DashouZiliaoHuoquView,
|
|
GuanshiXinxiView,
|
|
HuoQuYaoQingRenView,
|
|
LaobanJianquanView,
|
|
ShangJiaXinXiView,
|
|
ShangjiaNichengGengxinView,
|
|
UserInfoUpdateView,
|
|
GetUserPhoneView,
|
|
BindUserPhoneView,
|
|
YaoqingmaView,
|
|
ZaixianZhuangtaiAPIView,
|
|
huoquKehuduanIP,
|
|
huoquYonghuDaili,
|
|
)
|
|
|
|
from .shangjia import (
|
|
DaShouFaKuanLieBiaoView,
|
|
FaKuanJiFenTongJiView,
|
|
FaKuanShenSuView,
|
|
ShangjiaCufaTongjiView,
|
|
ShangjiaFakuanLieBiaoView,
|
|
ShangjiaZhuceView,
|
|
)
|
|
|
|
from .tixian import (
|
|
FORBIDDEN_STATUS_FOR_WITHDRAW,
|
|
GuanshiContactView,
|
|
ORDER_STATUS_COMPLETED,
|
|
ORDER_STATUS_FAIL,
|
|
ORDER_STATUS_REFUNDED,
|
|
ShoukuanXinxiShangchuanView,
|
|
TixianAssetView,
|
|
TixianCallbackV3View,
|
|
TixianJiluHuoquViewV2,
|
|
TixianQueRenAutoView,
|
|
TixianShenqingV3View,
|
|
TixianShenqingView,
|
|
TixianXinxiHuoquView,
|
|
YonghuTixianShenheXiugaiView,
|
|
generate_tixian_id,
|
|
)
|
|
|
|
from .fund_freeze_mp import (
|
|
FundFreezeMineView,
|
|
FundFreezeMyLedgerDetailView,
|
|
FundFreezeMyLedgerView,
|
|
)
|
|
|
|
from .admin import (
|
|
AdGetOrderList,
|
|
AdGetOrderTypes,
|
|
AdGuanLiYongHu,
|
|
AdKfglView,
|
|
AdKftjView,
|
|
AdKfxgView,
|
|
AdTongYiChuFa,
|
|
AdYaoQingDaShou,
|
|
AdcjxgView,
|
|
AdckyhxqView,
|
|
AddtxshView,
|
|
AdminFinancialDataView,
|
|
AdminLoginView,
|
|
AdtixianqkView,
|
|
CfGuanLi,
|
|
PaihangbangGuanliQueryView,
|
|
PaihangbangRiqiliebiaoView,
|
|
admin_required,
|
|
)
|
|
|
|
from .chufa import (
|
|
ChufaJiluHuoquView,
|
|
DashouPermission,
|
|
DashouShensuView,
|
|
ShangjiaChufaJiluHuoquView,
|
|
)
|
|
|
|
from .kefu_base import (
|
|
KefuGetOrderTypesView,
|
|
KefuLoginView,
|
|
KefuStatsView,
|
|
)
|
|
|
|
from .kefu_orders import (
|
|
KefuCancelDesignationView,
|
|
KefuChangeDashouView,
|
|
KefuForceCompleteView,
|
|
KefuGetOrderDetailView,
|
|
KefuGetOrderListView,
|
|
KefuGetShangjiaOrderListView,
|
|
KefuMerchantRefundView,
|
|
KefuPlatformRefundView,
|
|
KefuRecoverOrderView,
|
|
KefuRejectRefundView,
|
|
KefuRejectSettlementView,
|
|
KefuTransferHallView,
|
|
)
|
|
|
|
from .kefu_dashou import (
|
|
KefuGetDashouDetailView,
|
|
KefuGetDashouListView,
|
|
KefuUpdateDashouView,
|
|
)
|
|
|
|
from .boss_dashou_search import BossSearchDashouView
|
|
|
|
from .kefu_punishment import (
|
|
KefuPunishView,
|
|
KefuPunishmentActionView,
|
|
KefuPunishmentDetailView,
|
|
KefuPunishmentListView,
|
|
)
|
|
|
|
from .kefu_withdraw import (
|
|
KefuWithdrawActionView,
|
|
KefuWithdrawDetailView,
|
|
KefuWithdrawListView,
|
|
)
|
|
|
|
from .pay import (
|
|
FaKuanHuitiaoView,
|
|
FaKuanPayFailView,
|
|
FaKuanPayPollView,
|
|
FaKuanPayView,
|
|
KaohePayCallbackView,
|
|
KaohePayFailView,
|
|
KaohePayPollView,
|
|
KaohePayView,
|
|
)
|