2 Commits

Author SHA1 Message Date
技术老胡
5576a606e4 更新文档 2025-02-18 14:01:10 +08:00
技术老胡
dc1ee1a226 新增支付宝账单查询插件 2025-02-18 13:22:26 +08:00
5 changed files with 16 additions and 2 deletions

2
.env
View File

@@ -1,4 +1,4 @@
APP_DEBUG = false
APP_DEBUG = true
DB_TYPE = mysql
DB_HOST = 127.0.0.1

View File

@@ -486,6 +486,7 @@ V免签是一款开源免费适用于个人收款使用的收款程序原理
| A筱磊 | 6.66 |
| 云峰 | 8.88 |
| 零零 | 200 |
| 子染 | 88 |
## 友情链接

View File

@@ -149,7 +149,7 @@ EOT;
`password` varchar(255) NOT NULL DEFAULT '' COMMENT '密码',
`state` tinyint(4) NOT NULL DEFAULT '1' COMMENT '启用',
`pattern` tinyint(4) NOT NULL DEFAULT '1' COMMENT '账号监听模式',
`params` varchar(255) NOT NULL DEFAULT '' COMMENT '自定义查询',
`params` text NOT NULL DEFAULT '' COMMENT '自定义查询',
`delete_time` timestamp NULL DEFAULT NULL COMMENT '软删除',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;";

View File

@@ -51,4 +51,17 @@ return array (
'type' => '30',
),
),
3 =>
array (
'platform' => 'alipayb',
'name' => '支付宝账单',
'class_name' => 'AliPayb',
'price' => '99.00',
'describe' => '支付宝账单查询回调,免挂机,稳定不掉线',
'website' => 'https://open.alipay.com/',
'state' => 1,
'query' =>
array (
),
),
);

Binary file not shown.