Files
yakpanel-core/class/pay.py
2026-04-07 02:04:22 +05:30

46 lines
1.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#coding: utf-8
# +-------------------------------------------------------------------
# | YakPanel
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2019 YakPanel(www.yakpanel.com) All rights reserved.
# +-------------------------------------------------------------------
# | Author: hwliang <hwl@yakpanel.com>
# +-------------------------------------------------------------------
#
# ┏┓ ┏┓
# ┏┛┻━━━━━━┛┻┓
# ┃ ☃ ┃
# ┃ ┳┛ ┗┳ ┃
# ┃ ┻ ┃
# ┗━┓ ┏━┛
# ┃ ┗━━━━━┓
# ┃ 神兽保佑 ┣┓
# ┃ 永无BUG ┏┛
# ┗┓┓┏━┳┓┏━━━━━┛
# ┃┫┫ ┃┫┫
# ┗┻┛ ┗┻┛
class pay:
#获取用户信息
def get_user_info(self,get):
pass;
#创建支付订单
def create_pay_order(self,get):
pass;
#获取微信支付二维码
def get_weixin_pay(self,get):
pass;
#获取支付宝支付订单
def get_alipay_pay(self,get):
pass
#判断当前支付状态
def check_pay_status(self,get):
pass;
#