forked from aaPanel/BaoTa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpay.py
46 lines (38 loc) · 1.34 KB
/
pay.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#coding: utf-8
# +-------------------------------------------------------------------
# | 宝塔Linux面板
# +-------------------------------------------------------------------
# | Copyright (c) 2015-2019 宝塔软件(http://bt.cn) All rights reserved.
# +-------------------------------------------------------------------
# | Author: hwliang <[email protected]>
# +-------------------------------------------------------------------
#
# ┏┓ ┏┓
# ┏┛┻━━━━━━┛┻┓
# ┃ ☃ ┃
# ┃ ┳┛ ┗┳ ┃
# ┃ ┻ ┃
# ┗━┓ ┏━┛
# ┃ ┗━━━━━┓
# ┃ 神兽保佑 ┣┓
# ┃ 永无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;
#