46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
#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;
|
||
|
||
#
|
||
|