代码拉取完成,页面将自动刷新
同步操作将从 865g/PaySystem 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
SET NAMES utf8mb4;
DROP TABLE IF EXISTS `put_forward`;
CREATE TABLE `put_forward` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`opt_user` int(11) DEFAULT NULL COMMENT '操作人',
`opt_time` datetime DEFAULT NULL COMMENT '创建时间',
`psd` varchar(256) DEFAULT NULL COMMENT '打款流水号',
`title` varchar(256) DEFAULT NULL COMMENT '打款说明',
`put_id` varchar(256) DEFAULT NULL COMMENT '收款人账号',
`put_name` varchar(256) DEFAULT NULL COMMENT '收款人真实姓名',
`price` decimal(10,2) DEFAULT NULL COMMENT '打款金额',
`status` int(11) DEFAULT NULL COMMENT '状态:1.失败,2.成功',
`error_info` varchar(256) DEFAULT NULL COMMENT '失败原因',
`trano` varchar(256) DEFAULT NULL COMMENT '流水号',
`p_type` int(11) DEFAULT NULL COMMENT '打款方式:1.微信,2.支付宝',
`ip` varchar(128) DEFAULT NULL COMMENT 'ip',
`str` varchar(128) DEFAULT NULL COMMENT 'wx pay str',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `put_forward_config`;
CREATE TABLE `put_forward_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`opt_user` int(11) DEFAULT NULL COMMENT '操作人',
`opt_time` datetime DEFAULT NULL COMMENT '时间',
`alipay_name` varchar(256) DEFAULT NULL COMMENT '支付宝收款人姓名',
`alipay_id` varchar(256) DEFAULT NULL COMMENT '支付宝账号',
`wx_name` varchar(256) DEFAULT NULL COMMENT '微信真实姓名',
`wx_open_id` varchar(256) DEFAULT NULL COMMENT '微信openid',
`title` varchar(256) DEFAULT NULL COMMENT '提款留言',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `put_forward_config` WRITE;
INSERT INTO `put_forward_config` (`id`, `opt_user`, `opt_time`, `alipay_name`, `alipay_id`, `wx_name`, `wx_open_id`, `title`)
VALUES
(1,1,'2018-05-13 10:33:53','1','1','1','1','平台收入自动提现');
UNLOCK TABLES;
DROP TABLE IF EXISTS `sys_function`;
CREATE TABLE `sys_function` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`fun_name` varchar(512) DEFAULT NULL COMMENT '权限值',
`fun_descp` varchar(512) DEFAULT NULL COMMENT '权限描述',
`fun_path` varchar(128) DEFAULT NULL COMMENT '权限路径',
`parent` int(11) DEFAULT NULL COMMENT '父id,0为顶级菜单',
`status` int(11) DEFAULT NULL COMMENT '状态:0.禁用,1.启用',
`opt_time` datetime DEFAULT NULL COMMENT '操作时间',
`is_menu` int(11) DEFAULT NULL COMMENT '是否为菜单:0.不是,1.是',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sys_function` WRITE;
INSERT INTO `sys_function` (`id`, `fun_name`, `fun_descp`, `fun_path`, `parent`, `status`, `opt_time`, `is_menu`)
VALUES
(2,'管理员首页','admin_welcome','/admin/welcomepage',0,0,'2018-05-07 03:46:09',0),
(3,'用户中心','user_info','/admin/user/info',0,0,'2018-05-07 03:49:29',1),
(4,'资料修改','user_info_edit','/admin/user/edit2',0,0,'2018-05-07 03:51:02',1),
(5,'页面设置','web_config','/admin/config/edit',0,0,'2018-05-07 03:52:31',1),
(6,'订单管理','order_list','/admin/order/list',0,0,'2018-05-07 03:53:58',1),
(7,'提现记录','user_sett_list','/admin/sett/list',0,0,'2018-05-16 17:51:40',1),
(8,'系统设置','sys_setting','javascript:void(0);',0,1,'2018-05-07 04:00:35',1),
(9,'数据统计','sys_count','javascript:void(0);',0,1,'2018-05-07 04:01:20',1),
(10,'用户管理','sys_user_list','/admin/user/list',8,0,'2018-05-07 04:06:49',1),
(11,'角色管理','sys_role_list','/admin/role/list',8,0,'2018-05-07 04:07:52',1),
(12,'权限管理','sys_function_list','/admin/function/list',8,0,'2018-05-07 04:08:29',1),
(13,'提现管理','sys_sett_admin','/admin/sett/list_admin',8,0,'2018-05-16 17:51:51',1),
(14,'网站设置','sys_web_config','/admin/wconfig/edit',8,0,'2018-05-07 04:11:27',1),
(15,'公告管理','sys_notice_list','/admin/notice/list',8,0,'2018-05-07 04:12:47',1),
(16,'API文档管理','sys_doc_api_list','/admin/doc/list',8,0,'2018-05-07 04:13:40',1),
(17,'授权管理','sys_domain_check_admin','/admin/domain/list_admin',8,0,'2018-06-01 11:41:17',1),
(18,'自动提现','sys_pf_list','/admin/pf/info',8,0,'2018-05-07 04:15:12',1),
(19,'快速打款','sys_ta_list','/admin/ta/info',8,0,'2018-05-07 04:16:15',1),
(20,'今日统计','sys_count_user_today','/admin/count/today',9,0,'2018-05-07 20:57:56',1),
(21,'全部数据','sys_count_user_history','/admin/count/history_all',9,0,'2018-05-07 04:36:09',1),
(22,'授权查询','user_domain_list','/admin/domain/list',9,0,'2018-06-01 11:41:30',1),
(23,'系统数据(今日)','sys_count_today','/admin/count/sys_today',9,0,'2018-05-07 04:38:02',1),
(24,'系统数据(全部)','sys_count_history','/admin/count/sys_all',9,0,'2018-05-07 04:38:58',1),
(25,'用户今日查询','sys_count_user_query','/admin/count/today_query',9,0,'2018-05-19 22:41:24',1),
(26,'用户全部查询','sys_count_user_history_query','/admin/count/history_all_query',9,0,'2018-05-19 22:41:58',1),
(27,'支付配置','pay_config','/admin/payConfig/edit',8,0,'2018-06-09 15:10:18',1);
UNLOCK TABLES;
DROP TABLE IF EXISTS `sys_role`;
CREATE TABLE `sys_role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`role_name` varchar(128) DEFAULT NULL COMMENT '角色名称',
`role_descp` varchar(128) DEFAULT NULL COMMENT '角色描述',
`opt_time` datetime DEFAULT NULL COMMENT '操作时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sys_role` WRITE;
INSERT INTO `sys_role` (`id`, `role_name`, `role_descp`, `opt_time`)
VALUES
(1,'管理员','sys_admin','2018-05-07 07:20:53'),
(2,'注册用户','user_register','2018-05-07 07:21:17'),
(3,'合作商户','user_create','2018-05-07 07:21:37'),
(8,'系统运营','运营账户','2018-05-08 13:52:13');
UNLOCK TABLES;
DROP TABLE IF EXISTS `sys_role_function`;
CREATE TABLE `sys_role_function` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`role_id` int(11) DEFAULT NULL COMMENT 'role id',
`fun_id` int(11) DEFAULT NULL COMMENT 'function id',
`opt_time` datetime DEFAULT NULL COMMENT '操作时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `sys_role_function` WRITE;
INSERT INTO `sys_role_function` (`id`, `role_id`, `fun_id`, `opt_time`)
VALUES
(182,3,3,'2018-05-07 22:30:39'),
(183,3,6,'2018-05-07 22:30:39'),
(184,3,7,'2018-05-07 22:30:39'),
(185,3,4,'2018-05-07 22:30:39'),
(186,3,5,'2018-05-07 22:30:39'),
(281,2,3,'2018-05-07 23:46:07'),
(282,2,4,'2018-05-07 23:46:07'),
(283,2,5,'2018-05-07 23:46:07'),
(284,2,6,'2018-05-07 23:46:07'),
(285,2,7,'2018-05-07 23:46:07'),
(286,2,20,'2018-05-07 23:46:07'),
(287,2,21,'2018-05-07 23:46:07'),
(288,2,22,'2018-05-07 23:46:07'),
(289,2,9,'2018-05-07 23:46:07'),
(301,8,2,'2018-05-08 15:42:57'),
(302,8,6,'2018-05-08 15:42:57'),
(303,8,13,'2018-05-08 15:42:57'),
(304,8,15,'2018-05-08 15:42:57'),
(305,8,16,'2018-05-08 15:42:57'),
(306,8,17,'2018-05-08 15:42:57'),
(307,8,19,'2018-05-08 15:42:57'),
(308,8,22,'2018-05-08 15:42:57'),
(309,8,23,'2018-05-08 15:42:57'),
(310,8,24,'2018-05-08 15:42:57'),
(311,8,8,'2018-05-08 15:42:57'),
(337,1,2,'2018-06-09 15:10:30'),
(338,1,3,'2018-06-09 15:10:30'),
(339,1,4,'2018-06-09 15:10:30'),
(340,1,5,'2018-06-09 15:10:30'),
(341,1,6,'2018-06-09 15:10:30'),
(342,1,7,'2018-06-09 15:10:30'),
(343,1,10,'2018-06-09 15:10:30'),
(344,1,11,'2018-06-09 15:10:30'),
(345,1,12,'2018-06-09 15:10:30'),
(346,1,13,'2018-06-09 15:10:30'),
(347,1,14,'2018-06-09 15:10:30'),
(348,1,15,'2018-06-09 15:10:30'),
(349,1,16,'2018-06-09 15:10:30'),
(350,1,17,'2018-06-09 15:10:30'),
(351,1,18,'2018-06-09 15:10:30'),
(352,1,19,'2018-06-09 15:10:30'),
(353,1,20,'2018-06-09 15:10:30'),
(354,1,21,'2018-06-09 15:10:30'),
(355,1,22,'2018-06-09 15:10:30'),
(356,1,23,'2018-06-09 15:10:30'),
(357,1,24,'2018-06-09 15:10:30'),
(358,1,25,'2018-06-09 15:10:30'),
(359,1,26,'2018-06-09 15:10:30'),
(360,1,9,'2018-06-09 15:10:30'),
(361,1,27,'2018-06-09 15:10:30'),
(362,1,8,'2018-06-09 15:10:30');
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_config`;
CREATE TABLE `system_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sitename` varchar(50) NOT NULL,
`keywords` text NOT NULL,
`description` text NOT NULL,
`panel` text NOT NULL,
`copy` text NOT NULL,
`liuyan` text NOT NULL,
`kfqq` varchar(20) NOT NULL,
`ym` varchar(250) NOT NULL,
`gg` varchar(250) NOT NULL,
`music` varchar(250) NOT NULL,
`uid` int(11) DEFAULT NULL COMMENT 'user id',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_config` WRITE;
INSERT INTO `system_config` (`id`, `sitename`, `keywords`, `description`, `panel`, `copy`, `liuyan`, `kfqq`, `ym`, `gg`, `music`, `uid`)
VALUES
(1,'24小时在线收款系统','24小时在线收款系统','24小时在线收款系统','24小时在线收款系统','206云支付','测试商品','1','https://pay.206so.com','欢迎使用24小时在线收款系统.','',1);
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_doc`;
CREATE TABLE `system_doc` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(512) DEFAULT NULL COMMENT '标题',
`content` longtext COMMENT '内容',
`status` int(11) DEFAULT NULL COMMENT '是否显示:1.显示 2.不显示',
`order_by` int(11) DEFAULT NULL COMMENT '排序号 ',
`create_time` datetime DEFAULT NULL COMMENT '创建时间 ',
`opt_user` int(11) DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_doc` WRITE;
INSERT INTO `system_doc` (`id`, `title`, `content`, `status`, `order_by`, `create_time`, `opt_user`)
VALUES
(13,'支付接口介绍','<blockquote style=\"box-sizing: border-box; margin: 50px 0px; padding: 30px 0px 30px 30px; border-width: 0px 0px 0px 5px; border-top-style: initial; border-right-style: initial; border-bottom-style: initial; border-left-style: solid; border-top-color: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: rgb(32, 221, 253); border-image: initial; font-style: italic; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-weight: 700; font-stretch: inherit; line-height: 30px; font-family: Raleway; vertical-align: baseline; quotes: none; color: rgb(22, 37, 50); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\"><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: 25px; font-family: inherit; vertical-align: baseline;\">使用此接口可以实现支付宝、QQ钱包、微信支付的即时到账,免签约,无需企业认证。</p></blockquote><p><span style=\"color: rgb(97, 97, 97); font-family: Raleway; letter-spacing: -0.24px; background-color: rgb(255, 255, 255);\">本文阅读对象:商户系统(在线购物平台、人工收银系统、自动化智能收银系统或其他)集成206云支付涉及的技术架构师,研发工程师,测试工程师,系统运维工程师。</span></p><p><span style=\"color: rgb(97, 97, 97); font-family: Raleway; letter-spacing: -0.24px; background-color: rgb(255, 255, 255);\"><br/></span></p>',1,1,'2018-04-18 09:51:21',1),
(14,'接口申请方式','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">共有两种接口模式:</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">(一)普通支付商户<br/>可以获得一个支付商户。请前往网址https://pay.206so.com进行申请,申请之后会将商户ID和商户KEY给你!</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">(二)合作支付商户<br/>获得一个合作者身份TOKEN,可以集成到你开发的程序里面,通过接口无限申请普通支付商户,并且每个普通支付商户单独结算,相对独立。申请需要进行企业或开发者资质认证,请联系人工申请QQ929512841,申请之后会将合作者身份TOKEN给你!</p><p><br/></p>',1,2,'2018-04-17 10:29:52',1),
(15,'协议规则','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">传输方式:HTTP</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">数据格式:JSON</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">签名算法:MD5</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">字符编码:UTF-8</p><p><br/></p>',1,3,'2018-04-13 11:27:37',1),
(16,'[API]创建商户','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">API权限:该API只能合作支付商户调用</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=apply&pid=1034&token=TOKEN&email=邮件地址</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">apply</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr><td colspan=\"1\" rowspan=\"1\">用户pid</td><td colspan=\"1\" rowspan=\"1\">pid</td><td colspan=\"1\" rowspan=\"1\"><p>是</p></td><td colspan=\"1\" rowspan=\"1\">string</td><td colspan=\"1\" rowspan=\"1\">1034</td><td colspan=\"1\" rowspan=\"1\">用户id</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">合作者TOKEN</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">token</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">9ddab6c4f2c87ce442de371b04f36d68</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">需要事先申请</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户邮件</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">email</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">admin@javaw.me</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\"><br/>返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">添加支付商户成功!</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">所创建的商户ID</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String(32)</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB854Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">邮件发送</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">send_email</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">boolean</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">true</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><p>是否邮件通知</p></td></tr><tr><td colspan=\"1\" rowspan=\"1\">用户名</td><td colspan=\"1\" rowspan=\"1\">user</td><td colspan=\"1\" rowspan=\"1\">string</td><td colspan=\"1\" rowspan=\"1\">d2m21nqq</td><td colspan=\"1\" rowspan=\"1\">登录账号</td></tr><tr><td colspan=\"1\" rowspan=\"1\">密码</td><td colspan=\"1\" rowspan=\"1\">passwd</td><td colspan=\"1\" rowspan=\"1\">string</td><td colspan=\"1\" rowspan=\"1\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td colspan=\"1\" rowspan=\"1\">密码<br/></td></tr></tbody></table>',1,4,'2018-04-17 10:29:00',1),
(17,'[API]查询商户信息与结算规则','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=query&pid={商户ID}&key={商户密钥}</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">query</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">所创建的商户ID</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String(32)</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">所创建的商户密钥</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此值暂无用</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户状态</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">active</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为正常,0为封禁</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户余额</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">money</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">0.00</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户所拥有的余额</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算账号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">account</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1070077170@qq.com</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算的支付宝账号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算姓名</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">username</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">张三</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算的支付宝姓名</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">满多少自动结算</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">settle_money</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">30</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此值为系统预定义</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">手动结算手续费</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">settle_fee</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此值为系统预定义</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">每笔订单分成比例</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">money_rate</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">98</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此值为系统预定义</td></tr></tbody></table>',1,5,'2018-04-17 10:28:41',1),
(18,'[API]修改结算账号','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=change&pid={商户ID}&key={商户密钥}&account={结算账号}&username={结算姓名}</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">change</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算账号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">account</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pay.svip</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算的支付宝账号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算姓名</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">username</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">张三</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算的支付宝姓名</td></tr><tr><td colspan=\"1\" rowspan=\"1\">类型</td><td colspan=\"1\" rowspan=\"1\">sett_type</td><td colspan=\"1\" rowspan=\"1\"><span style=\"background-color: rgb(248, 248, 248);\">是</span></td><td colspan=\"1\" rowspan=\"1\"><span style=\"background-color: rgb(248, 248, 248);\">St</span><span style=\"background-color: rgb(248, 248, 248);\">ring</span></td><td colspan=\"1\" rowspan=\"1\">1</td><td colspan=\"1\" rowspan=\"1\">1.微信 2.支付宝 3.QQ</td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">修改收款账号成功!</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table>',1,6,'2018-04-17 10:28:23',1),
(19,'[API]查询结算记录','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=settle&pid={商户ID}&key={商户密钥}</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">settle</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">查询结算记录成功!</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算记录</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">data</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Array</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">结算记录列表</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table>',1,7,'2018-04-17 10:28:06',1),
(20,'[API]查询单个订单','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=order&pid={商户ID}&key={商户密钥}&out_trade_no={商户订单号}</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">order</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">out_trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20160806151343349</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">查询订单号成功!</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">易支付订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">2016080622555342651</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Hack易支付订单号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">out_trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20160806151343349</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户系统内部的订单号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">支付方式</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay:支付宝,tenpay:财付通,<br/>qqpay:QQ钱包,wxpay:微信支付</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">发起支付的商户ID</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">创建订单时间</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">addtime</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">2016-08-06 22:55:52</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">完成交易时间</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">endtime</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">2016-08-06 22:55:52</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商品名称</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">name</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">VIP会员</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商品金额</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">money</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1.00</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">支付状态</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">status</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">0</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为支付成功,0为未支付</td></tr></tbody></table><p><br/></p>',1,8,'2018-04-17 10:27:10',1),
(21,'[API]批量查询订单','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=orders&pid={商户ID}&key={商户密钥}</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">orders</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">查询订单数量</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">limit</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">否</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回的订单数量,最大50</td></tr></tbody></table><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(245, 245, 245);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">查询结算记录成功!</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">订单列表</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">data</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Array</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">订单列表</td></tr></tbody></table><p><br/></p>',1,9,'2018-04-17 10:26:35',1),
(22,'发起支付请求','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">URL地址:<a href=\"https://pay.206so.com/submit.php?pid={商户ID}&type={支付方式}&out_trade_no={商户订单号}¬ify_url={服务器异步通知地址}&return_url={页面跳转通知地址}&name={商品名称}&money={金额}&sitename={网站名称}&sign={签名字符串}&sign_type=MD5\">https://pay.206so.com/submit.php?pid={商户ID}&type={支付方式}&out_trade_no={商户订单号}&notify_url={服务器异步通知地址}&return_url={页面跳转通知地址}&name={商品名称}&money={金额}&sitename={网站名称}&sign={签名字符串}&sign_type=MD5</a> </p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求方式说明:<span style=\"color: rgb(255, 0, 0);\">必须为POST请求</span></p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">支付方式</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay:支付宝,tenpay:财付通,<br/>qqpay:QQ钱包,wxpay:微信支付</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">out_trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20160806151343349</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">异步通知地址</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">notify_url</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">http://www.cccyun.cc/notify_url.php</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">服务器异步通知地址</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">跳转通知地址</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">return_url</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">http://www.cccyun.cc/return_url.php</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">页面跳转通知地址</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商品名称</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">name</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">VIP会员</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商品金额</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">money</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1.00</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">网站名称</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">sitename</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">否</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">某某某平台</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名字符串</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">sign</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">202cb962ac59075b964b07152d234b70</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名算法与<a href=\"http://doc.open.alipay.com/docs/doc.htm?treeId=62&articleId=104741&docType=1\" target=\"_blank\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; color: rgb(51, 122, 183); text-decoration-line: none; background-color: transparent;\">支付宝签名算法</a>相同</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">sign_type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">MD5</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">默认为MD5<br/><br/></td></tr></tbody></table><p><br/></p>',1,11,'2018-05-27 11:57:09',1),
(23,'支付结果通知','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">通知类型:服务器异步通知(notify_url)、页面跳转通知(return_url)</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求方式:GET</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; white-space: normal; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"847\" style=\"width: 731px;\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\" class=\"firstRow\"><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"box-sizing: border-box; margin: 0px; padding: 8px; border-top: 0px; border-bottom-width: 2px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">易支付订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20160806151343349021</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">易支付订单号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户订单号</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">out_trade_no</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">20160806151343349</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户系统内部的订单号</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">支付方式</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">alipay:支付宝,tenpay:财付通,<br/>qqpay:QQ钱包,wxpay:微信支付</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">名称</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">name</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">VIP充值</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><span style=\"background-color: rgb(248, 248, 248);\">名称</span></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(245, 245, 245);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商品金额</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">money</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1.00</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">支付状态</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">trade_status</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">TRADE_SUCCESS</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名字符串</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">sign</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">202cb962ac59075b964b07152d234b70</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名算法与<a href=\"http://doc.open.alipay.com/docs/doc.htm?treeId=62&articleId=104741&docType=1\" target=\"_blank\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; color: rgb(51, 122, 183); text-decoration-line: none; background-color: transparent;\">支付宝签名算法</a>相同</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">签名类型</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">sign_type</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">MD5</td><td style=\"box-sizing: border-box; margin: 0px; padding: 8px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">默认为MD5</td></tr></tbody></table><hr/><p><br/></p>',1,12,'2018-05-22 14:45:02',1),
(24,'SDK下载','<p style=\"line-height: 16px;\"><img src=\"https://pay.206so.com/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif\"/><a style=\"font-size:12px; color:#0066cc;\" href=\"/group1/M00/00/00/rB_j7VrVrd6AaUpCAAAxnVWBbK0369.zip\" title=\"206Demo_PHP.zipzip\">206Demo_PHP.zip</a></p><p>版本:1.0.0<br/></p><p style=\"line-height: 16px;\"><img src=\"https://pay.206so.com/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif\"/><a style=\"font-size:12px; color:#0066cc;\" href=\"/group1/M00/00/00/rB_j7Vr1oM-AHD1NAACk2iysJaU834.zip\" title=\"swapidc对接替换文件.zipzip\">swapidc对接替换文件.zip</a></p><p>版本:1.0.0</p><p style=\"line-height: 16px;\"><img src=\"https://pay.206so.com/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif\"/><a style=\"font-size:12px; color:#0066cc;\" href=\"/group1/M00/00/00/rB_j7Vr6NNqAf_TwAAARDpHKTwo604.zip\" title=\"Java-SDK.zipzip\">Java-SDK.zip</a></p><p>版本:1.0.5</p>',1,13,'2018-05-25 14:11:53',1),
(25,'[API]订单退款申请','<p style=\"margin-top: 0px; margin-bottom: 10px; white-space: normal; box-sizing: border-box; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; background-color: rgb(255, 255, 255);\">URL地址:https://pay.206so.com/api.php?act=refund&pid={商户ID}&key={商户密钥}&trade_no={系统订单号}</p><p style=\"margin-top: 0px; margin-bottom: 10px; white-space: normal; box-sizing: border-box; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; background-color: rgb(255, 255, 255);\">请求参数说明:</p><table class=\"table table-bordered table-hover\" width=\"731\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr class=\"firstRow\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">必填</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">操作类型</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">act</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">refund</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">此API固定值</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户ID</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">pid</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">1001</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">商户密钥</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">key</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">89unJUB8HZ54Hj7x4nUj56HN4nUzUJ8i</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">订单号</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">trade_no</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">是</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">3087</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><p class=\"p1\">系统订单号</p></td></tr></tbody></table><p style=\"margin-top: 0px; margin-bottom: 10px; white-space: normal; box-sizing: border-box; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: 25px; font-family: Raleway; vertical-align: baseline; color: rgb(97, 97, 97); letter-spacing: -0.24px; background-color: rgb(255, 255, 255);\">返回结果:</p><table class=\"table table-bordered table-hover\" width=\"731\"><thead style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 0px 0px 2px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr class=\"firstRow\" style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">字段名</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">变量名</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">类型</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">示例值</th><th style=\"padding: 8px; border-top: 0px; border-bottom-width: 2px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-weight: 300; font-stretch: inherit; font-size: 0.9em; line-height: 1.42857; font-family: inherit; vertical-align: bottom; text-align: left; color: rgb(100, 100, 100);\">描述</th></tr></thead><tbody style=\"box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; background-color: rgb(248, 248, 248);\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回状态码</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">code</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">Int</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">0</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">0为成功,其它值为失败</td></tr><tr style=\"box-sizing: border-box; margin: 0px; padding: 0px; border-width: 1px 0px; border-top-style: solid; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: rgb(229, 229, 229); border-right-color: initial; border-bottom-color: rgb(229, 229, 229); border-left-color: initial; border-image: initial; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline;\"><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">返回信息</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">msg</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\">String</td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><p class=\"p1\">退款<span style=\"font-family: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-weight: inherit;\"></span><span style=\"font-family: inherit; font-style: inherit; font-variant-ligatures: inherit; font-variant-caps: inherit; font-weight: inherit;\">成功!</span></p></td><td style=\"padding: 8px; box-sizing: border-box; margin: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; line-height: 1.42857; font-family: inherit; vertical-align: top;\"><br/></td></tr></tbody></table><p><br/></p>',1,10,'2018-05-16 18:14:04',1);
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_domain`;
CREATE TABLE `system_domain` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domain` varchar(1024) DEFAULT NULL COMMENT '查询的域名',
`nature` varchar(256) DEFAULT NULL COMMENT '备案性质,个人 or 企业',
`icp` varchar(256) DEFAULT NULL COMMENT '主备案号',
`index_url` varchar(256) DEFAULT NULL COMMENT '首页地址',
`sitename` varchar(256) DEFAULT NULL COMMENT '备案的名称',
`now_icp` varchar(256) DEFAULT NULL COMMENT '当前域名的备案号',
`name1` varchar(234) DEFAULT NULL COMMENT '个人是备案人名称,公司是公司名称',
`status` int(11) DEFAULT NULL COMMENT '是否备案:1.未备案,2.已备案',
`serach` varchar(512) DEFAULT NULL COMMENT '域名搜索',
`opt_time` datetime DEFAULT NULL COMMENT '最后操作时间',
`uid` int(11) DEFAULT '0' COMMENT '用户id',
`pay_show_info` int(11) DEFAULT '0' COMMENT '支付时显示提示信息:0.不显示,1.显示',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `system_notice`;
CREATE TABLE `system_notice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(1024) DEFAULT NULL COMMENT '标题',
`context` longtext COMMENT '内容',
`status` int(11) DEFAULT NULL COMMENT '是否显示:1.显示 2.不显示',
`uid` int(11) DEFAULT NULL COMMENT '创建人',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`orderby` int(11) DEFAULT NULL COMMENT '排序号',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_notice` WRITE;
INSERT INTO `system_notice` (`id`, `title`, `context`, `status`, `uid`, `create_time`, `orderby`)
VALUES
(27,'重要通知','<h4 style=\"box-sizing: border-box; font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 黑体, 宋体, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(88, 102, 110); margin-top: 10px; margin-bottom: 10px; font-size: 18px; white-space: normal; background-color: rgb(255, 255, 255);\">发现网站进行诈骗,虚假发货,直接冻结.</h4><p><a class=\"list-group-item\" style=\"box-sizing: border-box; background-color: rgb(246, 248, 248); color: rgb(85, 85, 85); cursor: pointer; position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; border: 1px solid rgb(237, 241, 242); outline: 0px; font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 黑体, 宋体, sans-serif; font-size: 14px; white-space: normal;\">禁止接入黄,赌,诈骗,刷Q币,抽奖以及cdk,王者荣耀点券及CDK,发现直接冻结接口,不给于结算,欢迎举报违规用户,核实真实以后有奖励。</a><a class=\"list-group-item\" style=\"box-sizing: border-box; background-color: rgb(246, 248, 248); cursor: pointer; position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; border: 1px solid rgb(237, 241, 242); outline: 0px; font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 黑体, 宋体, sans-serif; font-size: 14px; white-space: normal;\"><span style=\"box-sizing: border-box; background-color: rgb(246, 248, 248); border: 1px solid rgb(237, 241, 242); cursor: pointer; position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; outline: 0px; font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 黑体, 宋体, sans-serif; font-size: 24px; color: rgb(255, 0, 0); text-align: center;\"> 一旦用户订单被举报,直接锁定账户不予结算.</span></a></p>',1,1,'2018-05-06 20:01:46',1),
(30,'订单删除问题','<p style=\"text-align: center;\"><span style=\"font-size: 24px; font-family: "comic sans ms"; color: rgb(255, 0, 0);\">尊敬的用户您好,为了保证系统的稳定运行和提供高速支付接口,系统每天晚上3点会删除所有用户未支付订单.为了不漏单,在该时间段请不要进行支付操作,请给您带来的不便,敬请谅解.</span></p>',1,1,'2018-05-22 16:19:12',4),
(32,'系统结算时间','<p><span style=\"font-size: 24px; color: rgb(118, 146, 60);\"><span style=\"font-size: 24px; caret-color: rgb(0, 0, 0); font-family: 微软雅黑, Tahoma, 宋体; text-size-adjust: auto; background-color: rgb(255, 255, 255);\">1.系统时时提现模式已开启,时间为每天8:30-21:00之间</span><br/><span style=\"font-size: 24px; caret-color: rgb(0, 0, 0); font-family: 微软雅黑, Tahoma, 宋体; text-size-adjust: auto; background-color: rgb(255, 255, 255);\">2.系统支持退款功能,如果用户不满意,用户可登录平台搜索单号退款,API退款同样可用,需要彩虹代刷系统适配该功能才能使用。</span><br/><span style=\"font-size: 24px; caret-color: rgb(0, 0, 0); font-family: 微软雅黑, Tahoma, 宋体; text-size-adjust: auto; background-color: rgb(255, 255, 255);\">3.本次更新后,所有用户自动提现功能默认关闭,需用户登录平台手动打开该功能,系统自动提现时间为每天21:00,打款22:00。</span><br/><span style=\"font-size: 24px; caret-color: rgb(0, 0, 0); font-family: 微软雅黑, Tahoma, 宋体; text-size-adjust: auto; background-color: rgb(255, 255, 255);\">4.订单退款时,如果用户余额不充足无法退款,可在账户中心充值余额,充值多了,提现同样会扣1%手续费。</span><br/><span style=\"font-size: 24px; caret-color: rgb(0, 0, 0); font-family: 微软雅黑, Tahoma, 宋体; text-size-adjust: auto; background-color: rgb(255, 255, 255);\">5.新增结算到银行卡功能,每笔提现手续费加收1块钱.T+1模式提现.</span></span></p>',1,1,'2018-05-17 17:39:28',1),
(38,'禁止接入的内容列表','<p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 20px;\">所有灰色产业链上的业务,一经发现立即 <span style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-weight: 700;\">封禁+报警</span></span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 20px;\">禁止接入的内容包括但不限于以下内容:</span></p><blockquote style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: 14px; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);\"><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">各种变相诈骗业务,如淘宝兼职、博彩、赛车等</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">各种金融类业务、聚合支付、贷款、汇兑、二清支付、套现等业务</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">所有服务器在境外的各种出售 VPN、VPS 的业务</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">发卡类平台、返利、分销、竞猜、有奖问答类业务</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">业务域名未取得 ICP 备案的</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">微信支付官方要求禁止接入的</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">所有国家法规规定禁止的</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: inherit; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em;\"><span style=\"font-size: 20px; color: rgb(255, 0, 0);\">其它 206 平台人工鉴定为不适合接入的</span></p></blockquote><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; margin-bottom: 0.85em; color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 20px;\">以上内容禁止接入,请勿挑战以上规则,费时耗力</span></p><p style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; cursor: default; font-size: 14px; orphans: 3; widows: 3; margin-top: 0px; color: rgb(51, 51, 51); font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; letter-spacing: 0.2px; white-space: normal; background-color: rgb(255, 255, 255); margin-bottom: 0px !important;\"><span style=\"font-size: 20px;\">以上内容一经发现,直接报警至海淀公安分局</span></p><p><br/></p>',1,1,'2018-06-02 22:58:12',5);
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_order`;
CREATE TABLE `system_order` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
`pay_type` int(11) DEFAULT NULL COMMENT '支付方式:1.微信 2.支付宝 3.QQ',
`out_order_id` varchar(256) DEFAULT NULL COMMENT '第三方接口传递order_id',
`price` decimal(11,2) DEFAULT NULL COMMENT '金额',
`status` int(11) DEFAULT NULL COMMENT '支付状态:1.未支付 2.已支付,3.已退款',
`create_time` datetime DEFAULT NULL COMMENT '订单创建时间',
`paid_time` datetime DEFAULT NULL COMMENT '订单支付时间',
`paid` decimal(11,2) DEFAULT NULL COMMENT '支付金额',
`title` varchar(512) DEFAULT NULL COMMENT '商品标题',
`context` varchar(512) DEFAULT NULL COMMENT '商品介绍',
`trade_no` varchar(512) DEFAULT NULL COMMENT '支付系统订单号',
`trade_status` varchar(128) DEFAULT NULL COMMENT '商户返回状态',
`uid` int(11) DEFAULT '1',
`notify_url` varchar(512) DEFAULT NULL COMMENT '通知url',
`return_url` varchar(512) DEFAULT NULL COMMENT '跳转url',
`is_sett` int(11) DEFAULT '1' COMMENT '是否已结算到用户余额:1.未结算,2.已结算',
`pre_pay_type` int(11) DEFAULT NULL COMMENT '结算类型:1.微信 2.支付宝 3.QQ',
`pre_account` varchar(256) DEFAULT NULL COMMENT '结算账户',
`pre_zs_name` varchar(256) DEFAULT NULL COMMENT '真实姓名',
`email` varchar(512) DEFAULT NULL COMMENT '邮件',
`order_type` int(11) DEFAULT '1' COMMENT '订单类型:1.快捷收款 2.注册订单 3.api订单',
`ip_addr` varchar(128) DEFAULT NULL COMMENT '订单ip地址',
`change_sett` decimal(10,2) DEFAULT '0.00' COMMENT '交易扣除手续费',
`is_notify` int(11) DEFAULT '0',
`ch_type` int(11) DEFAULT '0' COMMENT '充值类型:0,余额充值,1.会员充值',
`ch_num` int(11) DEFAULT '1' COMMENT '充值数量,默认1',
`site_name` varchar(512) DEFAULT NULL COMMENT '网站',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `system_pay_config`;
CREATE TABLE `system_pay_config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`epay_id` varchar(128) DEFAULT NULL COMMENT '易支付id',
`epay_key` varchar(128) DEFAULT NULL COMMENT '易支付key',
`ret_domain` varchar(128) DEFAULT NULL COMMENT '统一回调域名',
`alipay_parther` varchar(128) DEFAULT NULL COMMENT '支付宝,商户id',
`alipay_open_app_id` varchar(128) DEFAULT NULL COMMENT '支付宝,开放平台ID',
`alipay_open_public_key` text COMMENT '支付宝 - 开放平台 - 公钥',
`alipay_open_private_key` text COMMENT '支付宝 - 开放平台 - 私钥',
`wxpay_mch_id` varchar(128) DEFAULT NULL COMMENT '微信支付,商户号',
`wxpay_paterner_key` varchar(256) DEFAULT NULL COMMENT '微信支付 - 商户平台私钥',
`wxpay_app_id` varchar(256) DEFAULT NULL COMMENT '微信支付 - 公众号APPID',
`wxpay_appsecrt` varchar(256) DEFAULT NULL COMMENT '微信支付 - 公众平台 - 私钥',
`wxpay_api_cert` blob COMMENT '微信支付,公众平台API证书',
`qqpay_mch_id` varchar(128) DEFAULT NULL COMMENT 'qq支付 商户id',
`qqpay_private_key` varchar(256) DEFAULT NULL COMMENT 'qq支付,商户秘钥',
`qqpay_pw` varchar(128) DEFAULT NULL COMMENT 'qq商户平台密码',
`mail_host` varchar(128) DEFAULT NULL COMMENT '邮件发送服务器',
`mail_post` int(11) DEFAULT '465' COMMENT '服务器端口',
`qqpay_api_cert` blob COMMENT 'qq支付,API证书',
`mail_user` varchar(128) DEFAULT NULL COMMENT '用户名',
`mail_pw` varchar(128) DEFAULT NULL COMMENT '用户密码',
`epay_api` varchar(128) DEFAULT NULL COMMENT '易支付接口地址 ',
`epay_id2` varchar(128) DEFAULT NULL COMMENT '易支付id',
`epay_key2` varchar(256) DEFAULT NULL COMMENT '易支付key',
`epay_api2` varchar(256) DEFAULT NULL COMMENT '易支付接口地址',
`epay_id3` varchar(256) DEFAULT NULL COMMENT '易支付id',
`epay_key3` varchar(256) DEFAULT NULL COMMENT '易支付key',
`epay_api3` varchar(256) DEFAULT NULL COMMENT '易支付接口地址',
`codepay_id` varchar(128) DEFAULT NULL COMMENT '码支付id',
`codepay_api` varchar(256) DEFAULT NULL COMMENT '码支付下单地址',
`codepay_key` varchar(256) DEFAULT NULL COMMENT '码支付通信秘钥',
`codepay_notify_url` varchar(256) DEFAULT NULL COMMENT '回调域名',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_pay_config` WRITE;
INSERT INTO `system_pay_config` (`id`, `epay_id`, `epay_key`, `ret_domain`, `alipay_parther`, `alipay_open_app_id`, `alipay_open_public_key`, `alipay_open_private_key`, `wxpay_mch_id`, `wxpay_paterner_key`, `wxpay_app_id`, `wxpay_appsecrt`, `wxpay_api_cert`, `qqpay_mch_id`, `qqpay_private_key`, `qqpay_pw`, `mail_host`, `mail_post`, `qqpay_api_cert`, `mail_user`, `mail_pw`, `epay_api`, `epay_id2`, `epay_key2`, `epay_api2`, `epay_id3`, `epay_key3`, `epay_api3`, `codepay_id`, `codepay_api`, `codepay_key`, `codepay_notify_url`)
VALUES
(1,'1035','1','https://pay.206so.com','1','1','1','1','1','1','1','1',X'89504E470D0A1A0A0000000D4948445200000040000000400806000000AA6971DE000000017352474200AECE1CE90000015969545874584D4C3A636F6D2E61646F62652E786D7000000000003C783A786D706D65746120786D6C6E733A783D2261646F62653A6E733A6D6574612F2220783A786D70746B3D22584D5020436F726520352E342E30223E0A2020203C7264663A52444620786D6C6E733A7264663D22687474703A2F2F7777772E77332E6F72672F313939392F30322F32322D7264662D73796E7461782D6E7323223E0A2020202020203C7264663A4465736372697074696F6E207264663A61626F75743D22220A202020202020202020202020786D6C6E733A746966663D22687474703A2F2F6E732E61646F62652E636F6D2F746966662F312E302F223E0A2020202020202020203C746966663A4F7269656E746174696F6E3E313C2F746966663A4F7269656E746174696F6E3E0A2020202020203C2F7264663A4465736372697074696F6E3E0A2020203C2F7264663A5244463E0A3C2F783A786D706D6574613E0A4CC2275900002021494441547801ED7B09745CD599E67D7BED55DAAAB494F6C59657C9B21078C1C20663C06677206048C29021E949D23DD399CEF43939D39CE94E664E9FE9193AE9C974A73B133A21930413022118309B0D78DF64C9966CEDFB56AA7D79556F9DEF962D21191924277D7AFA9CBE47AF5ED57B77F9FFFFFEFB7FC5917F816DEFDEBD9CD56AE51B1A1A04B7DBCD6ED9B285E9ECEC346F0415FE4606FD738E696A6A1262B198D3E7733B0951A4A222773293C9C4005302D7B289C0FD7322B39CB59F7DF659D6E9745A799EF7B12C5B5F2AD8373D23967D695A60A393A94474C3860D497081BE9C3969DF7F311C70F1E245DE3493393CCFD6AFB3E73CF46042DAD3D81FF0B537E62A5DF148002D0C7C94FF1F08C0B4B6B652CEE221A722EE92A66902C3301CCF6BAC61880CCB2AA6A2B0269E69F452D0B0BB4A3C1E570E1D3A4477F113AC9C4EA77946153CFF512A7DE6E6FEF01E4B3281DF1A69D28A771C20E47D9B8D1D826E88EFDFBF7F595CF0FBE20006B2C997949458342D66278473691A9703C4DD2C6B3A5996E09929E12EE9BA6E2AAC0422E874B7320C63C8A228C681604C92A4C85D77DD1595653901E2C92D2D2D2A58DF403F62B1CC98D18C539F748B53C951A2DA08C31349240D7D33F95555394D83D1990ECC1140D714EDBFD4C62CB5E362FDA85C9E387142E079D9A9EB5C2E902E0492C516D12C5B51CEAEAE2C91EBFCF9A430D7655A726C13D239AE94FD0EF3B49960AD8C57370D9B9C51CC784CE182A1803B101AD406063BD570A4DF3098318E3326759D9D5155952AB8744141019B4C06720D43585D2ED8777F41F37CFEE681B0CF4C67C8AF6EAD3EFD7FA6BBFF1CE38E1F3C789012E1131CB418FCF4D98D1280C14E89D84D37E6F0E2AAE079B36E4B237BDB869AF8FA7AFFA8A7C81DB0736C86654C83300067882D2177587E4A82A68358894A34C068E03995151617CF98A62B21675CE3E3517BCF601F7FE1D287E64CF03C90EAC7EB718BC512C10E1B101997611855E0ACE67DD692C7EFEF8E34247D9EE433F6E96FC88AFE21A4690462A4610C6D0CC482857E60404013E241B9690171966D0520DF7C4545850B9AB81493ADF5B8C88EFBB733CF3CB367EA817B1B4FACADF60EB93D96A8C4B1106FAC858F6CFB9EF8657280DD425CE0500A010BDA73780984002643747C2404810FE5E53A827555A572437D537EB1FF16299DCAD52361E80C8D08829A49A7752A1E21C32081F36ABC77BA2477BA296ED6782B2B264EC5026D549C7A7B7BA91E60F6ECD963D5B4B08BE3AC1EC3880A2B56AC25DDDDDDB3C4C9C2B51C02809AB7584DD3E905F22B19C6DCF2C0ED9EAFFEBB3D971ED85677B222CF32656158BA4174E9ECDC731F0A63217F26FC21094315F04075B14687B0184C2F3A414A1485E1C23C4F6CDDAA35C53E6F333313E28D84AC8A229349A53249BBDD1E816404FBD3727F6F8EF461757E51A62D3ED309EE902901B051167C2F62186945E5230FEE8D760F240C2DA5D4D4ACCCBE9F85614904A0B2EE72B91C990C29D175D2B46E85FDD1FFF0C8D4D3F7AC7FB7CE2305C5C5909E5D80DE7BD85AF27DFE71A06562E71770E0FC6E0BBE530EE1199664789EEBF7E57BC8BA55EBF359AE5A1B1889C1A064D039A9EB4C142C1F9E52E48993C1F14BA9542A01C5AB565454B08220E4731C69CCBFFBAEAFBEDA5CFF548BCA8AC19EA1316C5E78DFBE7D6988491690CF2400648803DB384D53A9300C76D3C377F05FFBCAAE5377947BBA9D9F85F82C46C7B926F24B76171121F9D730C76C97EBDEA97E80E124319117466B2BCBAAFCFE4666685836D229787E6C027A2861C241C05D869CABE00C2A562E3C5BE92C2B7BF8CC9ED607A38228B2799E0A57DB85614D51C7A7A7A763C049A58B7E2A0128F250204E50B31A93DEFA077BF56F3E7ACB7B6B2D5C9C034C4B6E47D99BC901660B9196EFA7CCAD71453CC04DF96E97B37EE53AE7C8A4A947C341493262A1505C3E76EC98064F90545757C314CB950CC7B5AA5FFCFCD3DDB96E9783E3A1454569A52815662EF7749A2609F8FDFED4E0E0A0715D3428DB87C36107628E4A9E25B77D735FF44FF6341CAA624DAAAEE6E05AD29730E304E32F73D03533C36B222C78DA893DEBB3593C230FED7A52AAA8B85FD3C472AFD76BA5DDB16102CCA6D734D9F5EE7BEF7EEA44717EBE95E5B24247C5E95CF3BAEADC8A8A1D10937228521B8630D7E3000AADDD62612B20F3B77E6D37F9E33B1B3FF05319BE113C0EB32DE44388C10D73009C0B9EAE3D1322CAD838516682642C91145D25C5B5AEBEFE639AAA8D979696A681580E21DADADCC6862F1EBB73EBCD26CBB1D4D2D046EF619670FE9CDC22E35C5B17C3A8538D8D1B138B720034A804B62FD234B6F9C916CF375ACB3AFCBF4BD46061A8E65F9AF2CB423BEF83E15822A465A2F60D93C4C818811D24941B041025C80B56561473394E151124D921A61516774E6BF7DDADB725C02E14E9F9ABDAC00D47AA4A0A6B6FBB6D3B1CAABC68342A7C8200409E7738D83C8E33D7DEBDB1F8A91DCEF3D56A8272D88DB3700E8902FFE58F070A848BC649A26F80C80938843C47E04367C9A341904B944C528927E2882B3868F722D3D49BC803F7ECEB87D853BF7B7EA384A0970A6572A9657D3394248FF9A11D16360AA5435585AABA72EF3DF77A2F36B310792D6C277ACA41384B9C90AC67BE70D067FD2AD003D831EAFBC1F159B0278B8FA48052E4995098C4B1EB3A90A5F23FDBE87B0AA87F74E2C2B46E06D0173BA4AF746D6F7DF2D0EA9A12CB55B6A7FD29B874BC8001F98150DCD7DBDFEDE81FDE9F242404AED1161080BAB7A08C0FC31A3F571FBFD7AECE888C682346068EC9583E71D662185CB0E5B61A32429C8C4C322676740904E0C0F66C249A45DE407F96FD987BA8A795D454D2A29048ECF4790482240A87A7C4555571575BEBCD8D94C4943C0835A839243655D5CA87C743F6F6CE0BEAA9B3EF1245BD9834D93E98CD008D3EE7087035B081FDD46A766D2879B8CEF8289F229F6D9C4EE43107117373899437033D73E5F1523FABCC01526D8E9136528D3880FA30D76F94C5B9940C791F45AC009E99873C1DA5422BE7309C5EDADEF14E309DEEC4231EEEEFAAE443BBEF9F9604C9820794F9BDE16822E7D2E549FBF94B1FE9FD83C7333A19E07963141E75D06693807B36F4FE98036854074A7AED92D8B8A360B0019E3AA6B9D228254DDD20F16E2FE11BD21005F8208B7BB4B34316DC795321779A1F9163CC6A620301280B2FDAB00E0B04D3A31344D3207BE084F98D12848EDD3132D511BC78E91570EB24602B707CE1D107DE28F0E4159844F70D0C851CED5D5DEC99F6F74C39D5A59AEC1038625A5595B0C753904240441DA03910663980814BE91004B6FCB635DEDD85E62527D219F3D7CE1A4C23C592685729F1AC1D804CA6210E94DDE6E65AD0FFDA1F5F505F222F88BB489F994F1C8806E9C652769D8F22141931A767483A99C07A1F6F009D8B22AFE2DA3E111A08BF7FF86F59D6E82044C8D43FFEC8CE8315452B1B2FF59ECC3B71AE2DD9D57D0E71CA806972A31CA70539CE199BDDED6B61A2BFB304684506078BC39CB0759BBC332B4CF84714B56B1BC39B448BF0247AA192B8578308028840C56191CE736481CA3090BBB0C849F53B811FA4FF4E7B5C0D8A36366113A584D369815661A85BC983229CA290246C3D847E6E693A35D5F8F4BE69747A407BF7F05F2189724C55C998BD409446B5C4A0FF8597BE4E2EF7C46496898081A6E10F84AC56413E70E0104DBACC813237E9BC2FB31C6081D9F36DA8F16D2D314FB9198E66B2166F0C671025C493487B2571D58F13DE0E13B7884E800E02E0023933581F3C742E67F07C0FD739150C4F2BCAF7646450984287CDE9A8A9AE33D6AE5AD5BB668537E8B45B98588268AAB280F5D3864EAC0663B40C8F7719878FFC0D903FCA30E2606EAE231D0D45D3E99FBFF60E35693C2FAAC824C9809A063A8B40B4383E94000C9488CD348DE2B53EAD89D5A1F2D985EC7FED50963788160511DACA88BD2A40AC8548C25067E7AA5EA0C88FC76A927FFFE68AF3874E46DF4F2422C1BC02BFAFB26EF53A889A1C8B0407FA7B2E9C9526A7CF39DA3ADCE5A5654DFE3D77EC68CB7317D3DDE6B067D474D1AB4637E32BDABB3E485CB8F80BB006D89B1F019E29A4CB0C244AF5FEFE7E9A4F34376FDE4C7F3334F90197584450C40683C1395642428572828EF70638DE80D2CF9A33DA998B44225592C4EDF9EE6DF29F1532132EC209D7E2BCE86F93A6744CA4E6F21462299921A23B414C334DBAA6D646FEF2E785AF75F7478FE617FA0B4BCA6A774187B6F4F57613097ABAC0EB25BEC2A2C8CCD4F881E31F1CFC496EAEDB62B3D9EAC47BEE7CE2AC3777157556BC19255533111830CFB4BFACC6A3C721ADBDD86668701BE40E7EBADD6E4E4D4D65D9DBE17098894482C9CFD7F974DACD4304782847CAC65945C2718A89BCAC8AF1D4042920823A9B7CE531907281BBAAC05A9F2F4CDA096CF552DB1513A5934C502099703161C5149964CBE2DF795BD83F38163A6CB28258ECAFDD75FAF4A996AE8B17164CEB74B93C376FDAF2D8F63B1FF0BCF7D68BFF9961F2A7CCDFBE3DB0BEBAACD9E05937333CD627A733FDD8B47EB8E401BBDD92F4780C1D6A82B2270737D6401275D61699F8CEA4D38205F65D124522298A6945E235BB93C521915913602D6FD4E8BDC8B59A089BE9B8EC581E3E3F9C1FCD5D9EC7D7F17A8A83665B00E8527E50BD40C0F799B4457FA1C777743C307228188C045AEFBCFF3FF5F476CF210FA489CBE526338169128FC5C8DB6F1E200F7DEEF377AF6BDAFADAC923870E391CC9141F0CCE308C8E5496A61A868E0CB196C0CE993E9F0F191E07777BC0286819649A8E9633674F55693350DC4897E9269438776FBB56CF98BCBBB74097370DB2EB736421D7A630369B627AA044EDBC42FEFBC146FE02B847810830B84C3E994C8A82C0B80BED4631F87729F82EDAC7D433E482D9327DB677FA0D2466867C45FE6AD162DD7EE2D8916CFFDDF73D4890364F656439E2F0B8F3DACFB5491F1C7A37FB0EF93E09E52DB8E0327FD3A6ED1B5CB9F91B24D1929748263A438189CE4B1D6D17C1A95A634C74DE73C9FE4716C254ECEDE0FB5312F99F1D455A84E374F3DFBF2FDD5914253B61504457863D523FC33C08EF05D121B2B00CB1638B06574F3137BF6532DD543700EFACED027179C88A61CBB7AA8ECFB0188B227EE52108C749E6E92116C906A3371E97E3AB1A376FEBEBE9C9BECE2FF0928282FCF82F9EFF5F3F838D1E12456BF48EDD0F3F8CDDDFEE72BB494FE7B9C8AEDD0F7F3DBFA8E4E1C989095B046E702C3A4AF06E97BF7C0559B9BAB1676A72EC75EEE8E52E8568A556C2AFA37EC44D236C737B21396B9A8CE98B91CD026BDE01442FE627990A2C5C864BC245752A620266F478A57E51D70DC662B19AAB57AFA65962985FB00E3C408B558F0837C2FE983BCBFE519293691F8E9C0301E07525D2022FD83399ACBE22F4CE0BA2B066434B6DC799637D994C2AF6FACB3F7DAEA965DBC1DEAE33818A9AFAAD9C647BF2273FFE87AC6864E79CF751E22FADDD73FF437F94A88AFE30392CE739C0A93CB6556119986FC60302C07331ABAE0EB18E7A884D3048CC972485D40C682639F7D27A7DFFB1527392E8A281BA0BB502597687B6CC70C8A008368BC899B0B9D7BA9FF3E0B8EE573A2ECCE4C8D144660C79C3583A6DCAC343FD87AA6BEA1FA12240E5FDC06BAF5A1A9B9A777CE90FBEB52312095E18ECBBFCE6991387CF188629DEBCF5CEDDBFDAFFCB6CBF5B5B7790C6A68DD9B52016E4F0FBEF10AA40E97D73C3C6ADF10F2EB0B9064FE093118D3344D40DECCD634C0E6C373818FB8F96108DE9F385E4C0CE3EF629FA1B6ED4C59315DA08E24B03F180110AC9B3CA93E027ADD5C157134044EDCA0474D0725B3CA3A8303D3242537A4F5D6C3B7DB2A676D547F5ABD76CA1088C8D8E642F3A6F554DED9AC60D1BD7ECDCF3C89981BEAECE9999191F558C0D1B3692C2C28293BFF8F15FFF8896BCEB56AEDBB8EDB61D5F1E1D1976D13976EEBAA73EC1B48DA940548285D359061C4C6C3A83BCFBBC86D4035715848339FF99C9D2380ABA95D3A81F309B158604285956E0A6C158B02A26D5E8CB68D9FEA2492C33D804CA3F28D9A0C9B882A323032F346F6C3E7AC7AEBB29D273B3F6F7F6905FBDF87314297A9B9A5A6E7B020866DF55A3CFD8D0E0478A92E9A315A1CB5DE78F86A6A73BAA6BEAB2EF2947A42D1CAFD1521324202999E05EE2C4EFAB61EBDC129FF802D1545956839F65EAB3EC4F3BB1B44A0B26D1D97704C379B61C0F4494310D6248486008570942BBE0327119BC4E0C11CFAF5E9C6C21CE0FCB48E929A70524CFA1FAA4A888BAF36CE2CCF10F0FBFF2E23F7E5BE299BFDBBA6DDB853FFCE36F91AC35F09766016C3B7B9A50E768B615787D6464A4AF038A32002E9A82FE9A31881E818DCF76094C4F9164A14BA23B061F2C1940C915FDEC066B2EE080D9F9E6DFD10F20B1ACCDA6CE670CC25B2C86AEAAAC227B9C9AF55D85481D39442D430EAE2845744F06F681224E2348EA5E434F6A9024B80B7CD8428471E8E3112BE15099F7E624AC9585797597433308AAFC084886B88696CD45723C96F3E17BAFFF1A7AE61D805DD0B071CB5DDB6FBFFD96D3A74EE553B6EE033714C04AD0168B4689D75754110906071119A3E0A2E7026E37DD79DA28815C93BD4852F3348ACC294C103B3840CFA7D5564049FB402186C73DA65619440436AF218610C0FEE0019185F7CBCE96D17945E1C11A440EBAC40CE154C2C5205D6D7662390F9D029FC8849134911733E1EB33740D282036833DD0282171A72203DF4C4AC8FC462DFFA6CB84BC096A4FB76CDE56545AB5F23D0A436DFDBA57DE78E5672F0258E3FC9923EDA224941614F8F2BBC8856C929322461BE586F2CADA6D3D5DED7D2058BA6E5543737E816FED9B6F1C800B2DA136C867C4B412E44DC101486A6EEDE52E6DEDE5A893E34015B684CE016846040DE70EB22559FAE44A4378CCC09F4257215B2C9D7D0E02288A24F1F129D10821C8F767BDE7593D00FC1810FF4A9AE90A414170FA00E59AD929AEDED1777B40F3FFC66D694AA5623336BBA39AEEE86F5F7D99B2FDFD0F3EF66FD74F8C0EF5586DB6C2025F490DD5FAB4F94BCBB217F512A948F84B1F6CFDE257BFD52AA792132CC7171D82F6A756842AC8D0CCF4F1A4956550972907016C40FA735757CFDE7493899F2F36861F3DC755A3DA9C3525002B0D95E17BE628D7F883167D90EE5C5D5D1D032598DD416EEDDAB548C29879B98275D5E69056872A35F0A5EFD0E8ED9A2BFBEAEAEB6C9FD90F646F9CD1A428157B8BCF28F1518BD5E91424EBF68EF6B6AC1943392AC7E1CAA99E9C9AF67D70E83D21120E6577F5AEDDF791D1C19EF7D7353457520E683B7B8650D3393434E8A49E22B50ED491DA79D73DA4B7F3DC5FB53963BFDD1276DE6E53A9D903E3333457020647EEB63FCFF8D9914AB363C318B3037096024C6A09787C547B92AC0AD5D6D957C88DC1EA28572BC8844328499C4EC991348DC26D9AF5269BAC82C717C37016D3C5EF7404E495544F275C332BCB8B4E0D7476F9CBAB794F4E5EF9D0E0407617E97D7202850DC8346569AA1033A9C4C1E31FBEF55271699963F3D6EDFEB2F20A16E241BD4042B5FFE6ADADA47143D3045CE29FF65E3A7740B43B674EAD24FFD76E70FD4848651222333CEA315E7D7B85F1FDDFAC353E9CB1EB81B218E3B6288C9FD5611E4D5AFCC912AAE394DF3810F0A6910DB62B28A365CD5D16EE9D3B77FAA10776FE176BC5779BDBC7BCC4722D7F2F8EF4624F4D5D2133965CFDBBDED5432713AFBCB9AA71D34D92D5B191BAC581C014BCC20CF1FBCB48756D2DCDF5BF75EAC8C15FDA6C765F4ED18AAD72E9DE5B455675B8B828245527D46E67C20343535DEFEC4732FA14DCF61E8F470AD3F0D7402C88F501A882B347485020BA43F004232440DD6BC86F9A78CF88F75DE61B6B2799CD47AAB5E7CE5419A39A2625110ED3A409758610CCE3036A208EA4C8785B8E30D87CE5C4071EDF58C35128E25014AEFCD82355624DE3233D1D2F7646F8F69F17FACB4B4A4B1BF3107E8AD15070E0E2D9231D7232162B28A9DEE4A8D9B56D3AF79EB298EA9004E413A61058D1C00C61316F7AC5EAEAA25BFF8DD1FD824D894FC8BACE2323AB46714F42D972164446B458042298AA8A6337B63423CB22924EAAA0EB22FF4A9DF906A9337F0B31516CAC9A4E2454959E160176F4CA4A38413D809EE4AAF7BBDDFBFEC728FF357724255D9B945C1A39C050C8FF4FE8ABC9F3DD7F4114EC0B6B8F19C9D2F3B190B32396302623B29694B54ACE4C1794B80567AD27E6687227B9621BE5540E924CC36A382B57E1A3F3418BA92C299346E2F6CBCFBD9498BCB45F14B576AB352F44131B8BC185C227E50A10C7C282E318889B498FD700471DD9247D76F7E9D8AC6AA7A7B14E9FFE20309188B69DA8AC9DDE79225A4AAC4B4F8C7C0C0410E034723E743BF2F712B100212391C3DABBB67A6CCC2D1E962765AC6E123960920F1E43C9DA2D808791829855BAD4048110542EE7372B5C9F31B5C299B7E24F1FC963FE2B494C5CD26439D48E3E4120333FFF373B947A7BB3DFE74F95FD8E31D9DDA73FB258D207C5C5E5482AF0625C62F2B645C91A5E476C3007D827E658FC010BF655579383634F234588780D2050C5C801291E4E0587040DC275E28889C49E66C87003DE6199CF6E70EEA1CA13AA5D10BC6BEADCA9B6A42AC7E9C1A9D8E38F3F4ECF1692679FA5BE512B575151C1D20BF13E744E209B23A477283D76707090A157737333FD4D97A51AF24AC320A815934CA632A6BFB8E4A6AAD1888B1196931D82D26245F2CAF837493059444F7DCD4EFDF1FDEA9E50EDE3082271BA1687FAE0D2B054852DA1D152414871897985FE6A63FCD090AEE9537D7D7D290AFBD4543D4DEEF0C8190AB4E60953C7E24C31377BE5E4C8F07924818A042E362F2F8FC121EB2B1C40D706658CFAFAB5544E9016E5A54D8A65BD3595C2B982391A7D0A8894F533E4DDE05748FBF466225D97F9AE4E81F7083348BC98219315D8DDF94CFC29AB508520009CC98CCFB6A2882F498C9D459D9FC5299124649BBACE8C7575FCB91D36AD464A3B8FCA86C18B70FF9121362559362D1B122F3E1972FEB247140DD0C806970719E8F9EB151515215EE6B5683AA1B1C5852B1A06C3C58C0035C17C1A4614F924391179821C1E7B1850503017D9FDF90BE13B65FC8C0BE707EB4100CA12CB6834191BE32B728AD5B61939111882C94BE160A5509FFCCBED5A55F90FEDFACA27D884F44E523A9341BD030ADEB4AC4FFEE4B1D04DCCB7CB06EF8B8F92D72FE3702712A9097D010128176CD8E0D5D3698BDA298762D595954D25C321479608D70048516450E222C8341E8BEC236F8F3E994D52C03DBDA6E7E23FA97BADDB1932D84015FF15677BF19ED73E45EA031B925445CEE75273E4B15348AA18B1CAE49FAEB2EAE52DC175F2464E854589C4CE4A4601B8C22695679ED9E8D057DCDF7D777F91FF74B5CD6DAE8C442C878651385E4800BA5467E7A85E595989A406AB748BBAD6C439D7B9633294F54265C5B0291C36B090F766BE829DDF4B04E0BD54E4E93A74361D517C5F230218FC580E09E878EA0333A80BB3636F1D2F4E3EE2B1E6EFFA91E21536862B42C4807C59D9AA9D1EED9687BCCADD8F29A59E9D995CBD28B07A8A388339C5C4537077C1D42D1D11DBC181AC19CC4EF8F1078A085A128ED1C06422FAD6738592EFDB09716F6E32652122ED8E5D87D61A53D69177279F26FD91158406E388E13F9E6109DFB21C84F3160C9C0564F0AF89DD3E7B0203EB199C43B0093662D3EAEAE2FE0851AC2A49E5A1DA38BFA1D418C53BDA348B3AF7BDB8BF68151E1DBCAE70D3F2922C070B102E376EB4E57CE96B13B9BB5D918438434AC885E8EDA423D84A54B01A95F9AB4E15FDB2E44653B5090F2107BE81AA2F08B0544B4017A005296477C91AE5D533A1D33FF8735D57BA5747FFFE3EE89E3CAB99F7655094A4D8B17F48B2FDDDB2D0399E9FD9DD2A1ABE268E8B341ABAE7AC42C2C7C72C3FFAC7B0F58DC9053A603EF4B0937A75F54A0529BED4684699EE74D53AFB06FEA4E2F4D083FC68A22A6BBF799A29BAC1965582C8DAF7DE4CB979E90200BCA1620DB22AFDF2E5F099BFFD3E38EF022A479171EED50B85DABD359E40EE161645D919FBD1EFF55BFFDBE938D7159A147E7DAE507DA03277C4B52EE196DF39E7DCFB37713212135141B82E01285E08198D9292F234FC8378409D184B970D32795A5D251B7649F4A8CBD2C1FE2495280192C526E969060B2D5109AAF022ED4C42AD0D3F7F3672FE058AFC491C9E8643842325C8E84EF02F7778F8DDA190A3E37F0F3AFEE22C380379793D83982063657D03ACB55C0B5BDE7B21CC9D9F46092D039779617EEC9360669F648FC6E35B014A682B5C82EF8E86CC97F6E9EFDC5AC2427B651DD7EB0AD27566C463FCFF0B19DE6892F71FC5313814A43FADD1C3113AF8BEC0E88F7AC77EFC7678F8E47E5489CFC3EE4F20CF20E3A0248B022F0B9F1F31403CBBA99AE65C605C718092B15AD3488939753842BA0785461A177C2A07CC024539A1B1B1310DB311CDE8D18921E6488F6355D06ED78BF2F5903B9BA4A43BFAE9FEC2EC6C57EE948306373264A202445CC411A28761A87944D90FBB1E57CA12BFE9632FFCF50FE5D0C0AF1126B703D9C9D75F7F3D39313161ECDBD76B6432B718382CAD47A38A86E850C57B3AEBDC05CF47A3EFE873F83B7A63E3ABFAF3CF0F628565345A4A478DCE0E2BE1835B5A2B31AE967A72DF839ECBDB2B8DFE423BCE7365CDDBA7FA4D743DA80E16DECFDB5F67C85431E28479311D0D04B35577DC6D4C522DD38F4F67FA5F3B9899EE7C1B79C24EAC3D9A9B9B4BFF37888E9AAF849685CBECD8E50EA2E0CF8A044E942945F8596323F98D7E7DDBCEC2A9CD356C5F9D5B4FF2C82AC26141E7D9C336F317A211C6F40A83BCF5149E6A286A51A4A1DC505140E2D334EDCA70C2163D33294C1E3E940E5E3E82327737CAFD23F05243F8DFA434223DF4FEFDB4F9702D6B4600C15EBCF896140AD95C28CD7B51C82805312ABCFADA9BBCCABA468F5AE3E346CA1D4C38CFC26444FCB718A508FEB0BDBA13E1F0130C192FC32E2BAA2EE851C5694E2499584F448A755D90C74F1DD7D54C1F647C18CA6A12014E18418D7C4DE8BB2C78AFD7F98609303B2125C4D523767600EB41F051801465A18B2BA87699152B9D6649B54D2E285402C83E7A6C9C9164D9D06ACDE8AF4A694C32957298C1402A3A3964C8E397B5C8E065B0F9248214FA8F4F21C86BE2D34E78CDC2F0BBDC7F6702CC5F1C35371E688A504656EC9E1BD1B41B5CED46C114FF5C61E0DF6D589C714629176E1C7ED31A222D1FE39F1DE861E2EC89CF1888485DB9B99CDDFCF9FF29BEFF5E09300F4006C4A01686C7BFDAD0181C926DD2733B59ABC37119B8DBA2016475B8DCAAC31151030169EEDCCEBC79FEF5EBBF52E09F9802FF0FC24349368A09A46F0000000049454E44AE426082','1','1','1','smtp.qq.com',465,X'89504E470D0A1A0A0000000D4948445200000040000000400806000000AA6971DE000000017352474200AECE1CE90000015969545874584D4C3A636F6D2E61646F62652E786D7000000000003C783A786D706D65746120786D6C6E733A783D2261646F62653A6E733A6D6574612F2220783A786D70746B3D22584D5020436F726520352E342E30223E0A2020203C7264663A52444620786D6C6E733A7264663D22687474703A2F2F7777772E77332E6F72672F313939392F30322F32322D7264662D73796E7461782D6E7323223E0A2020202020203C7264663A4465736372697074696F6E207264663A61626F75743D22220A202020202020202020202020786D6C6E733A746966663D22687474703A2F2F6E732E61646F62652E636F6D2F746966662F312E302F223E0A2020202020202020203C746966663A4F7269656E746174696F6E3E313C2F746966663A4F7269656E746174696F6E3E0A2020202020203C2F7264663A4465736372697074696F6E3E0A2020203C2F7264663A5244463E0A3C2F783A786D706D6574613E0A4CC2275900002021494441547801ED7B09745CD599E67D7BED55DAAAB494F6C59657C9B21078C1C20663C06677206048C29021E949D23DD399CEF43939D39CE94E664E9FE9193AE9C974A73B133A21930413022118309B0D78DF64C9966CEDFB56AA7D79556F9DEF962D21191924277D7AFA9CBE47AF5ED57B77F9FFFFFEFB7FC5917F816DEFDEBD9CD56AE51B1A1A04B7DBCD6ED9B285E9ECEC346F0415FE4606FD738E696A6A1262B198D3E7733B0951A4A222773293C9C4005302D7B289C0FD7322B39CB59F7DF659D6E9745A799EF7B12C5B5F2AD8373D23967D695A60A393A94474C3860D497081BE9C3969DF7F311C70F1E245DE3493393CCFD6AFB3E73CF46042DAD3D81FF0B537E62A5DF148002D0C7C94FF1F08C0B4B6B652CEE221A722EE92A66902C3301CCF6BAC61880CCB2AA6A2B0269E69F452D0B0BB4A3C1E570E1D3A4477F113AC9C4EA77946153CFF512A7DE6E6FEF01E4B3281DF1A69D28A771C20E47D9B8D1D826E88EFDFBF7F595CF0FBE20006B2C997949458342D66278473691A9703C4DD2C6B3A5996E09929E12EE9BA6E2AAC0422E874B7320C63C8A228C681604C92A4C85D77DD1595653901E2C92D2D2D2A58DF403F62B1CC98D18C539F748B53C951A2DA08C31349240D7D33F95555394D83D1990ECC1140D714EDBFD4C62CB5E362FDA85C9E387142E079D9A9EB5C2E902E0492C516D12C5B51CEAEAE2C91EBFCF9A430D7655A726C13D239AE94FD0EF3B49960AD8C57370D9B9C51CC784CE182A1803B101AD406063BD570A4DF3098318E3326759D9D5155952AB8744141019B4C06720D43585D2ED8777F41F37CFEE681B0CF4C67C8AF6EAD3EFD7FA6BBFF1CE38E1F3C789012E1131CB418FCF4D98D1280C14E89D84D37E6F0E2AAE079B36E4B237BDB869AF8FA7AFFA8A7C81DB0736C86654C83300067882D2177587E4A82A68358894A34C068E03995151617CF98A62B21675CE3E3517BCF601F7FE1D287E64CF03C90EAC7EB718BC512C10E1B101997611855E0ACE67DD692C7EFEF8E34247D9EE433F6E96FC88AFE21A4690462A4610C6D0CC482857E60404013E241B9690171966D0520DF7C4545850B9AB81493ADF5B8C88EFBB733CF3CB367EA817B1B4FACADF60EB93D96A8C4B1106FAC858F6CFB9EF8657280DD425CE0500A010BDA73780984002643747C2404810FE5E53A827555A572437D537EB1FF16299DCAD52361E80C8D08829A49A7752A1E21C32081F36ABC77BA2477BA296ED6782B2B264EC5026D549C7A7B7BA91E60F6ECD963D5B4B08BE3AC1EC3880A2B56AC25DDDDDDB3C4C9C2B51C02809AB7584DD3E905F22B19C6DCF2C0ED9EAFFEBB3D971ED85677B222CF32656158BA4174E9ECDC731F0A63217F26FC21094315F04075B14687B0184C2F3A414A1485E1C23C4F6CDDAA35C53E6F333313E28D84AC8A229349A53249BBDD1E816404FBD3727F6F8EF461757E51A62D3ED309EE902901B051167C2F62186945E5230FEE8D760F240C2DA5D4D4ACCCBE9F85614904A0B2EE72B91C990C29D175D2B46E85FDD1FFF0C8D4D3F7AC7FB7CE2305C5C5909E5D80DE7BD85AF27DFE71A06562E71770E0FC6E0BBE530EE1199664789EEBF7E57BC8BA55EBF359AE5A1B1889C1A064D039A9EB4C142C1F9E52E48993C1F14BA9542A01C5AB565454B08220E4731C69CCBFFBAEAFBEDA5CFF548BCA8AC19EA1316C5E78DFBE7D6988491690CF2400648803DB384D53A9300C76D3C377F05FFBCAAE5377947BBA9D9F85F82C46C7B926F24B76171121F9D730C76C97EBDEA97E80E124319117466B2BCBAAFCFE4666685836D229787E6C027A2861C241C05D869CABE00C2A562E3C5BE92C2B7BF8CC9ED607A38228B2799E0A57DB85614D51C7A7A7A763C049A58B7E2A0128F250204E50B31A93DEFA077BF56F3E7ACB7B6B2D5C9C034C4B6E47D99BC901660B9196EFA7CCAD71453CC04DF96E97B37EE53AE7C8A4A947C341493262A1505C3E76EC98064F90545757C314CB950CC7B5AA5FFCFCD3DDB96E9783E3A1454569A52815662EF7749A2609F8FDFED4E0E0A0715D3428DB87C36107628E4A9E25B77D735FF44FF6341CAA624DAAAEE6E05AD29730E304E32F73D03533C36B222C78DA893DEBB3593C230FED7A52AAA8B85FD3C472AFD76BA5DDB16102CCA6D734D9F5EE7BEF7EEA44717EBE95E5B24247C5E95CF3BAEADC8A8A1D10937228521B8630D7E3000AADDD62612B20F3B77E6D37F9E33B1B3FF05319BE113C0EB32DE44388C10D73009C0B9EAE3D1322CAD838516682642C91145D25C5B5AEBEFE639AAA8D979696A681580E21DADADCC6862F1EBB73EBCD26CBB1D4D2D046EF619670FE9CDC22E35C5B17C3A8538D8D1B138B720034A804B62FD234B6F9C916CF375ACB3AFCBF4BD46061A8E65F9AF2CB423BEF83E15822A465A2F60D93C4C818811D24941B041025C80B56561473394E151124D921A61516774E6BF7DDADB725C02E14E9F9ABDAC00D47AA4A0A6B6FBB6D3B1CAABC68342A7C8200409E7738D83C8E33D7DEBDB1F8A91DCEF3D56A8272D88DB3700E8902FFE58F070A848BC649A26F80C80938843C47E04367C9A341904B944C528927E2882B3868F722D3D49BC803F7ECEB87D853BF7B7EA384A0970A6572A9657D3394248FF9A11D16360AA5435585AABA72EF3DF77A2F36B310792D6C277ACA41384B9C90AC67BE70D067FD2AD003D831EAFBC1F159B0278B8FA48052E4995098C4B1EB3A90A5F23FDBE87B0AA87F74E2C2B46E06D0173BA4AF746D6F7DF2D0EA9A12CB55B6A7FD29B874BC8001F98150DCD7DBDFEDE81FDE9F242404AED1161080BAB7A08C0FC31A3F571FBFD7AECE888C682346068EC9583E71D662185CB0E5B61A32429C8C4C322676740904E0C0F66C249A45DE407F96FD987BA8A795D454D2A29048ECF4790482240A87A7C4555571575BEBCD8D94C4943C0835A839243655D5CA87C743F6F6CE0BEAA9B3EF1245BD9834D93E98CD008D3EE7087035B081FDD46A766D2879B8CEF8289F229F6D9C4EE43107117373899437033D73E5F1523FABCC01526D8E9136528D3880FA30D76F94C5B9940C791F45AC009E99873C1DA5422BE7309C5EDADEF14E309DEEC4231EEEEFAAE443BBEF9F9604C9820794F9BDE16822E7D2E549FBF94B1FE9FD83C7333A19E07963141E75D06693807B36F4FE98036854074A7AED92D8B8A360B0019E3AA6B9D228254DDD20F16E2FE11BD21005F8208B7BB4B34316DC795321779A1F9163CC6A620301280B2FDAB00E0B04D3A31344D3207BE084F98D12848EDD3132D511BC78E91570EB24602B707CE1D107DE28F0E4159844F70D0C851CED5D5DEC99F6F74C39D5A59AEC1038625A5595B0C753904240441DA03910663980814BE91004B6FCB635DEDD85E62527D219F3D7CE1A4C23C592685729F1AC1D804CA6210E94DDE6E65AD0FFDA1F5F505F222F88BB489F994F1C8806E9C652769D8F22141931A767483A99C07A1F6F009D8B22AFE2DA3E111A08BF7FF86F59D6E82044C8D43FFEC8CE8315452B1B2FF59ECC3B71AE2DD9D57D0E71CA806972A31CA70539CE199BDDED6B61A2BFB304684506078BC39CB0759BBC332B4CF84714B56B1BC39B448BF0247AA192B8578308028840C56191CE736481CA3090BBB0C849F53B811FA4FF4E7B5C0D8A36366113A584D369815661A85BC983229CA290246C3D847E6E693A35D5F8F4BE69747A407BF7F05F2189724C55C998BD409446B5C4A0FF8597BE4E2EF7C46496898081A6E10F84AC56413E70E0104DBACC813237E9BC2FB31C6081D9F36DA8F16D2D314FB9198E66B2166F0C671025C493487B2571D58F13DE0E13B7884E800E02E0023933581F3C742E67F07C0FD739150C4F2BCAF7646450984287CDE9A8A9AE33D6AE5AD5BB668537E8B45B98588268AAB280F5D3864EAC0663B40C8F7719878FFC0D903FCA30E2606EAE231D0D45D3E99FBFF60E35693C2FAAC824C9809A063A8B40B4383E94000C9488CD348DE2B53EAD89D5A1F2D985EC7FED50963788160511DACA88BD2A40AC8548C25067E7AA5EA0C88FC76A927FFFE68AF3874E46DF4F2422C1BC02BFAFB26EF53A889A1C8B0407FA7B2E9C9526A7CF39DA3ADCE5A5654DFE3D77EC68CB7317D3DDE6B067D474D1AB4637E32BDABB3E485CB8F80BB006D89B1F019E29A4CB0C244AF5FEFE7E9A4F34376FDE4C7F3334F90197584450C40683C1395642428572828EF70638DE80D2CF9A33DA998B44225592C4EDF9EE6DF29F1532132EC209D7E2BCE86F93A6744CA4E6F21462299921A23B414C334DBAA6D646FEF2E785AF75F7478FE617FA0B4BCA6A774187B6F4F57613097ABAC0EB25BEC2A2C8CCD4F881E31F1CFC496EAEDB62B3D9EAC47BEE7CE2AC3777157556BC19255533111830CFB4BFACC6A3C721ADBDD86668701BE40E7EBADD6E4E4D4D65D9DBE17098894482C9CFD7F974DACD4304782847CAC65945C2718A89BCAC8AF1D4042920823A9B7CE531907281BBAAC05A9F2F4CDA096CF552DB1513A5934C502099703161C5149964CBE2DF795BD83F38163A6CB28258ECAFDD75FAF4A996AE8B17164CEB74B93C376FDAF2D8F63B1FF0BCF7D68BFF9961F2A7CCDFBE3DB0BEBAACD9E05937333CD627A733FDD8B47EB8E401BBDD92F4780C1D6A82B2270737D6401275D61699F8CEA4D38205F65D124522298A6945E235BB93C521915913602D6FD4E8BDC8B59A089BE9B8EC581E3E3F9C1FCD5D9EC7D7F17A8A83665B00E8527E50BD40C0F799B4457FA1C777743C307228188C045AEFBCFF3FF5F476CF210FA489CBE526338169128FC5C8DB6F1E200F7DEEF377AF6BDAFADAC923870E391CC9141F0CCE308C8E5496A61A868E0CB196C0CE993E9F0F191E07777BC0286819649A8E9633674F55693350DC4897E9269438776FBB56CF98BCBBB74097370DB2EB736421D7A630369B627AA044EDBC42FEFBC146FE02B847810830B84C3E994C8A82C0B80BED4631F87729F82EDAC7D433E482D9327DB677FA0D2466867C45FE6AD162DD7EE2D8916CFFDDF73D4890364F656439E2F0B8F3DACFB5491F1C7A37FB0EF93E09E52DB8E0327FD3A6ED1B5CB9F91B24D1929748263A438189CE4B1D6D17C1A95A634C74DE73C9FE4716C254ECEDE0FB5312F99F1D455A84E374F3DFBF2FDD5914253B61504457863D523FC33C08EF05D121B2B00CB1638B06574F3137BF6532DD543700EFACED027179C88A61CBB7AA8ECFB0188B227EE52108C749E6E92116C906A3371E97E3AB1A376FEBEBE9C9BECE2FF0928282FCF82F9EFF5F3F838D1E12456BF48EDD0F3F8CDDDFEE72BB494FE7B9C8AEDD0F7F3DBFA8E4E1C989095B046E702C3A4AF06E97BF7C0559B9BAB1676A72EC75EEE8E52E8568A556C2AFA37EC44D236C737B21396B9A8CE98B91CD026BDE01442FE627990A2C5C864BC245752A620266F478A57E51D70DC662B19AAB57AFA65962985FB00E3C408B558F0837C2FE983BCBFE519293691F8E9C0301E07525D2022FD83399ACBE22F4CE0BA2B066434B6DC799637D994C2AF6FACB3F7DAEA965DBC1DEAE33818A9AFAAD9C647BF2273FFE87AC6864E79CF751E22FADDD73FF437F94A88AFE30392CE739C0A93CB6556119986FC60302C07331ABAE0EB18E7A884D3048CC972485D40C682639F7D27A7DFFB1527392E8A281BA0BB502597687B6CC70C8A008368BC899B0B9D7BA9FF3E0B8EE573A2ECCE4C8D144660C79C3583A6DCAC343FD87AA6BEA1FA12240E5FDC06BAF5A1A9B9A777CE90FBEB52312095E18ECBBFCE6991387CF188629DEBCF5CEDDBFDAFFCB6CBF5B5B7790C6A68DD9B52016E4F0FBEF10AA40E97D73C3C6ADF10F2EB0B9064FE093118D3344D40DECCD634C0E6C373818FB8F96108DE9F385E4C0CE3EF629FA1B6ED4C59315DA08E24B03F180110AC9B3CA93E027ADD5C157134044EDCA0474D0725B3CA3A8303D3242537A4F5D6C3B7DB2A676D547F5ABD76CA1088C8D8E642F3A6F554DED9AC60D1BD7ECDCF3C89981BEAECE9999191F558C0D1B3692C2C28293BFF8F15FFF8896BCEB56AEDBB8EDB61D5F1E1D1976D13976EEBAA73EC1B48DA940548285D359061C4C6C3A83BCFBBC86D4035715848339FF99C9D2380ABA95D3A81F309B158604285956E0A6C158B02A26D5E8CB68D9FEA2492C33D804CA3F28D9A0C9B882A323032F346F6C3E7AC7AEBB29D273B3F6F7F6905FBDF87314297A9B9A5A6E7B020866DF55A3CFD8D0E0478A92E9A315A1CB5DE78F86A6A73BAA6BEAB2EF2947A42D1CAFD1521324202999E05EE2C4EFAB61EBDC129FF802D1545956839F65EAB3EC4F3BB1B44A0B26D1D97704C379B61C0F4494310D6248486008570942BBE0327119BC4E0C11CFAF5E9C6C21CE0FCB48E929A70524CFA1FAA4A888BAF36CE2CCF10F0FBFF2E23F7E5BE299BFDBBA6DDB853FFCE36F91AC35F09766016C3B7B9A50E768B615787D6464A4AF038A32002E9A82FE9A31881E818DCF76094C4F9164A14BA23B061F2C1940C915FDEC066B2EE080D9F9E6DFD10F20B1ACCDA6CE670CC25B2C86AEAAAC227B9C9AF55D85481D39442D430EAE2845744F06F681224E2348EA5E434F6A9024B80B7CD8428471E8E3112BE15099F7E624AC9585797597433308AAFC084886B88696CD45723C96F3E17BAFFF1A7AE61D805DD0B071CB5DDB6FBFFD96D3A74EE553B6EE033714C04AD0168B4689D75754110906071119A3E0A2E7026E37DD79DA28815C93BD4852F3348ACC294C103B3840CFA7D5564049FB402186C73DA65619440436AF218610C0FEE0019185F7CBCE96D17945E1C11A440EBAC40CE154C2C5205D6D7662390F9D029FC8849134911733E1EB33740D282036833DD0282171A72203DF4C4AC8FC462DFFA6CB84BC096A4FB76CDE56545AB5F23D0A436DFDBA57DE78E5672F0258E3FC9923EDA224941614F8F2BBC8856C929322461BE586F2CADA6D3D5DED7D2058BA6E5543737E816FED9B6F1C800B2DA136C867C4B412E44DC101486A6EEDE52E6DEDE5A893E34015B684CE016846040DE70EB22559FAE44A4378CCC09F4257215B2C9D7D0E02288A24F1F129D10821C8F767BDE7593D00FC1810FF4A9AE90A414170FA00E59AD929AEDED1777B40F3FFC66D694AA5623336BBA39AEEE86F5F7D99B2FDFD0F3EF66FD74F8C0EF5586DB6C2025F490DD5FAB4F94BCBB217F512A948F84B1F6CFDE257BFD52AA792132CC7171D82F6A756842AC8D0CCF4F1A4956550972907016C40FA735757CFDE7493899F2F36861F3DC755A3DA9C3525002B0D95E17BE628D7F883167D90EE5C5D5D1D032598DD416EEDDAB548C29879B98275D5E69056872A35F0A5EFD0E8ED9A2BFBEAEAEB6C9FD90F646F9CD1A428157B8BCF28F1518BD5E91424EBF68EF6B6AC1943392AC7E1CAA99E9C9AF67D70E83D21120E6577F5AEDDF791D1C19EF7D7353457520E683B7B8650D3393434E8A49E22B50ED491DA79D73DA4B7F3DC5FB53963BFDD1276DE6E53A9D903E3333457020647EEB63FCFF8D9914AB363C318B3037096024C6A09787C547B92AC0AD5D6D957C88DC1EA28572BC8844328499C4EC991348DC26D9AF5269BAC82C717C37016D3C5EF7404E495544F275C332BCB8B4E0D7476F9CBAB794F4E5EF9D0E0407617E97D7202850DC8346569AA1033A9C4C1E31FBEF55271699963F3D6EDFEB2F20A16E241BD4042B5FFE6ADADA47143D3045CE29FF65E3A7740B43B674EAD24FFD76E70FD4848651222333CEA315E7D7B85F1FDDFAC353E9CB1EB81B218E3B6288C9FD5611E4D5AFCC912AAE394DF3810F0A6910DB62B28A365CD5D16EE9D3B77FAA10776FE176BC5779BDBC7BCC4722D7F2F8EF4624F4D5D2133965CFDBBDED5432713AFBCB9AA71D34D92D5B191BAC581C014BCC20CF1FBCB48756D2DCDF5BF75EAC8C15FDA6C765F4ED18AAD72E9DE5B455675B8B828245527D46E67C20343535DEFEC4732FA14DCF61E8F470AD3F0D7402C88F501A882B347485020BA43F004232440DD6BC86F9A78CF88F75DE61B6B2799CD47AAB5E7CE5419A39A2625110ED3A409758610CCE3036A208EA4C8785B8E30D87CE5C4071EDF58C35128E25014AEFCD82355624DE3233D1D2F7646F8F69F17FACB4B4A4B1BF3107E8AD15070E0E2D9231D7232162B28A9DEE4A8D9B56D3AF79EB298EA9004E413A61058D1C00C61316F7AC5EAEAA25BFF8DD1FD824D894FC8BACE2323AB46714F42D972164446B458042298AA8A6337B63423CB22924EAAA0EB22FF4A9DF906A9337F0B31516CAC9A4E2454959E160176F4CA4A38413D809EE4AAF7BBDDFBFEC728FF357724255D9B945C1A39C050C8FF4FE8ABC9F3DD7F4114EC0B6B8F19C9D2F3B190B32396302623B29694B54ACE4C1794B80567AD27E6687227B9621BE5540E924CC36A382B57E1A3F3418BA92C299346E2F6CBCFBD9498BCB45F14B576AB352F44131B8BC185C227E50A10C7C282E318889B498FD700471DD9247D76F7E9D8AC6AA7A7B14E9FFE20309188B69DA8AC9DDE79225A4AAC4B4F8C7C0C0410E034723E743BF2F712B100212391C3DABBB67A6CCC2D1E962765AC6E123960920F1E43C9DA2D808791829855BAD4048110542EE7372B5C9F31B5C299B7E24F1FC963FE2B494C5CD26439D48E3E4120333FFF373B947A7BB3DFE74F95FD8E31D9DDA73FB258D207C5C5E5482AF0625C62F2B645C91A5E476C3007D827E658FC010BF655579383634F234588780D2050C5C801291E4E0587040DC275E28889C49E66C87003DE6199CF6E70EEA1CA13AA5D10BC6BEADCA9B6A42AC7E9C1A9D8E38F3F4ECF1692679FA5BE512B575151C1D20BF13E744E209B23A477283D76707090A157737333FD4D97A51AF24AC320A815934CA632A6BFB8E4A6AAD1888B1196931D82D26245F2CAF837493059444F7DCD4EFDF1FDEA9E50EDE3082271BA1687FAE0D2B054852DA1D152414871897985FE6A63FCD090AEE9537D7D7D290AFBD4543D4DEEF0C8190AB4E60953C7E24C31377BE5E4C8F07924818A042E362F2F8FC121EB2B1C40D706658CFAFAB5544E9016E5A54D8A65BD3595C2B982391A7D0A8894F533E4DDE05748FBF466225D97F9AE4E81F7083348BC98219315D8DDF94CFC29AB508520009CC98CCFB6A2882F498C9D459D9FC5299124649BBACE8C7575FCB91D36AD464A3B8FCA86C18B70FF9121362559362D1B122F3E1972FEB247140DD0C806970719E8F9EB151515215EE6B5683AA1B1C5852B1A06C3C58C0035C17C1A4614F924391179821C1E7B1850503017D9FDF90BE13B65FC8C0BE707EB4100CA12CB6834191BE32B728AD5B61939111882C94BE160A5509FFCCBED5A55F90FEDFACA27D884F44E523A9341BD030ADEB4AC4FFEE4B1D04DCCB7CB06EF8B8F92D72FE3702712A9097D010128176CD8E0D5D3698BDA298762D595954D25C321479608D70048516450E222C8341E8BEC236F8F3E994D52C03DBDA6E7E23FA97BADDB1932D84015FF15677BF19ED73E45EA031B925445CEE75273E4B15348AA18B1CAE49FAEB2EAE52DC175F2464E854589C4CE4A4601B8C22695679ED9E8D057DCDF7D777F91FF74B5CD6DAE8C442C878651385E4800BA5467E7A85E595989A406AB748BBAD6C439D7B9633294F54265C5B0291C36B090F766BE829DDF4B04E0BD54E4E93A74361D517C5F230218FC580E09E878EA0333A80BB3636F1D2F4E3EE2B1E6EFFA91E21536862B42C4807C59D9AA9D1EED9687BCCADD8F29A59E9D995CBD28B07A8A388339C5C4537077C1D42D1D11DBC181AC19CC4EF8F1078A085A128ED1C06422FAD6738592EFDB09716F6E32652122ED8E5D87D61A53D69177279F26FD91158406E388E13F9E6109DFB21C84F3160C9C0564F0AF89DD3E7B0203EB199C43B0093662D3EAEAE2FE0851AC2A49E5A1DA38BFA1D418C53BDA348B3AF7BDB8BF68151E1DBCAE70D3F2922C070B102E376EB4E57CE96B13B9BB5D918438434AC885E8EDA423D84A54B01A95F9AB4E15FDB2E44653B5090F2107BE81AA2F08B0544B4017A005296477C91AE5D533A1D33FF8735D57BA5747FFFE3EE89E3CAB99F7655094A4D8B17F48B2FDDDB2D0399E9FD9DD2A1ABE268E8B341ABAE7AC42C2C7C72C3FFAC7B0F58DC9053A603EF4B0937A75F54A0529BED4684699EE74D53AFB06FEA4E2F4D083FC68A22A6BBF799A29BAC1965582C8DAF7DE4CB979E90200BCA1620DB22AFDF2E5F099BFFD3E38EF022A479171EED50B85DABD359E40EE161645D919FBD1EFF55BFFDBE938D7159A147E7DAE507DA03277C4B52EE196DF39E7DCFB37713212135141B82E01285E08198D9292F234FC8378409D184B970D32795A5D251B7649F4A8CBD2C1FE2495280192C526E969060B2D5109AAF022ED4C42AD0D3F7F3672FE058AFC491C9E8643842325C8E84EF02F7778F8DDA190A3E37F0F3AFEE22C380379793D83982063657D03ACB55C0B5BDE7B21CC9D9F46092D039779617EEC9360669F648FC6E35B014A682B5C82EF8E86CC97F6E9EFDC5AC2427B651DD7EB0AD27566C463FCFF0B19DE6892F71FC5313814A43FADD1C3113AF8BEC0E88F7AC77EFC7678F8E47E5489CFC3EE4F20CF20E3A0248B022F0B9F1F31403CBBA99AE65C605C718092B15AD3488939753842BA0785461A177C2A07CC024539A1B1B1310DB311CDE8D18921E6488F6355D06ED78BF2F5903B9BA4A43BFAE9FEC2EC6C57EE948306373264A202445CC411A28761A87944D90FBB1E57CA12BFE9632FFCF50FE5D0C0AF1126B703D9C9D75F7F3D39313161ECDBD76B6432B718382CAD47A38A86E850C57B3AEBDC05CF47A3EFE873F83B7A63E3ABFAF3CF0F628565345A4A478DCE0E2BE1835B5A2B31AE967A72DF839ECBDB2B8DFE423BCE7365CDDBA7FA4D743DA80E16DECFDB5F67C85431E28479311D0D04B35577DC6D4C522DD38F4F67FA5F3B9899EE7C1B79C24EAC3D9A9B9B4BFF37888E9AAF849685CBECD8E50EA2E0CF8A044E942945F8596323F98D7E7DDBCEC2A9CD356C5F9D5B4FF2C82AC26141E7D9C336F317A211C6F40A83BCF5149E6A286A51A4A1DC505140E2D334EDCA70C2163D33294C1E3E940E5E3E82327737CAFD23F05243F8DFA434223DF4FEFDB4F9702D6B4600C15EBCF896140AD95C28CD7B51C82805312ABCFADA9BBCCABA468F5AE3E346CA1D4C38CFC26444FCB718A508FEB0BDBA13E1F0130C192FC32E2BAA2EE851C5694E2499584F448A755D90C74F1DD7D54C1F647C18CA6A12014E18418D7C4DE8BB2C78AFD7F98609303B2125C4D523767600EB41F051801465A18B2BA87699152B9D6649B54D2E285402C83E7A6C9C9164D9D06ACDE8AF4A694C32957298C1402A3A3964C8E397B5C8E065B0F9248214FA8F4F21C86BE2D34E78CDC2F0BBDC7F6702CC5F1C35371E688A504656EC9E1BD1B41B5CED46C114FF5C61E0DF6D589C714629176E1C7ED31A222D1FE39F1DE861E2EC89CF1888485DB9B99CDDFCF9FF29BEFF5E09300F4006C4A01686C7BFDAD0181C926DD2733B59ABC37119B8DBA2016475B8DCAAC31151030169EEDCCEBC79FEF5EBBF52E09F9802FF0FC24349368A09A46F0000000049454E44AE426082','11','1','http://fpay.tiantianzhifu.net','1','','http://fpay.tiantianzhifu.net','1','','http://fpay.tiantianzhifu.net','1','https://codepay.fateqq.com:51888/creat_order','1','暂时无用');
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_sett`;
CREATE TABLE `system_sett` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sid` varchar(128) DEFAULT NULL COMMENT '结算id',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`sett_pre_money` decimal(11,2) DEFAULT NULL COMMENT '结算金额',
`sett_sub_money` decimal(11,2) DEFAULT NULL COMMENT '扣除手续费',
`sett_final_money` decimal(11,2) DEFAULT NULL COMMENT '打款金额',
`create_time` datetime DEFAULT NULL COMMENT '结算时间',
`ok_time` datetime DEFAULT NULL COMMENT '打款时间',
`status` int(11) DEFAULT NULL COMMENT '状态:1.等待打款,2.已打款,3,打款失败,4.取消打款',
`opt_user` int(11) DEFAULT NULL COMMENT '操作用户',
`pre_type` int(11) DEFAULT NULL COMMENT '打款方式:1.微信 2.支付宝 3.QQ',
`ctype` int(11) DEFAULT NULL COMMENT '打款路径:1.手动,2系统自动',
`tran_no` varchar(512) DEFAULT NULL COMMENT '打款流水号',
`sett_error` varchar(1024) DEFAULT NULL COMMENT '打款失败原因',
`is_sett` int(11) DEFAULT NULL COMMENT '是否结算利润:1.未结算,2.已结算',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `system_user`;
CREATE TABLE `system_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user` varchar(128) DEFAULT NULL COMMENT '用户名',
`pwd` varchar(256) DEFAULT NULL COMMENT '密码',
`role` int(11) DEFAULT NULL COMMENT '角色,1.系统管理员,2.普通用户',
`showName` varchar(512) DEFAULT NULL,
`email` varchar(128) DEFAULT NULL,
`phone` varchar(12) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
`sex` int(11) DEFAULT NULL,
`creste_time` datetime DEFAULT NULL,
`create_ip` varchar(128) DEFAULT NULL,
`last_login_time` datetime DEFAULT NULL,
`appkey` varchar(512) DEFAULT NULL COMMENT 'key',
`balnes` decimal(11,2) DEFAULT NULL COMMENT '用户余额',
`zsname` varchar(128) DEFAULT NULL COMMENT '收款真实姓名',
`zspayType` int(11) DEFAULT NULL COMMENT '收款方式:1.微信 2.支付宝 3.QQ',
`zspayid` varchar(512) DEFAULT NULL COMMENT '收款账号',
`is_locked` int(11) DEFAULT NULL COMMENT '是否锁定账户:1.锁定 2.不锁定',
`user_parent` int(11) DEFAULT NULL COMMENT '创建者id',
`url` varchar(1024) DEFAULT NULL COMMENT '网站域名',
`is_auto_sett` int(11) DEFAULT '0' COMMENT '是否自动提现:0.否,1.是',
`card_bank_code` varchar(128) DEFAULT NULL COMMENT '银行代码',
`pay_staff` decimal(5,4) DEFAULT '0.0200' COMMENT '交易费率',
`sett_staff` decimal(5,4) DEFAULT '0.0100' COMMENT '提现费率',
`vip_pay_staff` decimal(5,4) DEFAULT '0.0200' COMMENT '会员交易费率',
`vip_sett_staff` decimal(5,4) DEFAULT '0.0000' COMMENT '会员提现费率',
`pay_alipay` int(11) DEFAULT '1',
`pay_qqpay` int(11) DEFAULT '1',
`pay_wxpay` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_user` WRITE;
INSERT INTO `system_user` (`id`, `user`, `pwd`, `role`, `showName`, `email`, `phone`, `age`, `sex`, `creste_time`, `create_ip`, `last_login_time`, `appkey`, `balnes`, `zsname`, `zspayType`, `zspayid`, `is_locked`, `user_parent`, `url`, `is_auto_sett`, `card_bank_code`, `pay_staff`, `sett_staff`, `vip_pay_staff`, `vip_sett_staff`, `pay_alipay`, `pay_qqpay`, `pay_wxpay`)
VALUES
(1,'admin','123456',1,'admin','1','1',12,0,'2018-04-06 09:22:48','127.0.0.1','2018-06-18 13:21:38','MtMzQwNS00NzY4LTlkNTctNGUxYTM1ZG',0.10,'1',1,'1',2,1,'pay.206so.com',1,'1001',0.0200,0.0100,0.0000,0.0000,0,0,0);
UNLOCK TABLES;
DROP TABLE IF EXISTS `system_vip`;
CREATE TABLE `system_vip` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`status` int(11) DEFAULT '0' COMMENT '状态:0.未开通,1.已开通',
`start_time` datetime DEFAULT NULL COMMENT '开始时间',
`end_time` datetime DEFAULT NULL COMMENT '结束时间',
`uid` int(11) DEFAULT NULL COMMENT '用户id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`opt_time` datetime DEFAULT NULL COMMENT '修改时间',
`experience_num` int(11) DEFAULT '3' COMMENT '秒到体验次数',
`experience_price` decimal(10,2) DEFAULT '1.00' COMMENT '秒到体验金额',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `system_web`;
CREATE TABLE `system_web` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pay_staff1` double DEFAULT NULL COMMENT '交易费率',
`pay_staff2` double DEFAULT NULL COMMENT '提现费率',
`kfqqq` varchar(128) DEFAULT NULL COMMENT '网站后台交流QQ群',
`kfqq` varchar(128) DEFAULT NULL COMMENT '网站客服QQ',
`sett_min` double DEFAULT NULL COMMENT '最低结算金额',
`http_url` varchar(512) DEFAULT NULL COMMENT '网站域名',
`copyright` varchar(512) DEFAULT NULL COMMENT '版权信息',
`icp_info` varchar(256) DEFAULT NULL COMMENT '备案信息',
`keywords` varchar(512) DEFAULT NULL COMMENT '关键字',
`dec_text` varchar(512) DEFAULT NULL COMMENT '介绍',
`site_name` varchar(512) DEFAULT NULL COMMENT '网站名称',
`music` varchar(1024) DEFAULT NULL COMMENT '背景音乐',
`user_def` text COMMENT '用户许可条款',
`reg_price` decimal(10,2) DEFAULT NULL COMMENT '商户注册价格',
`qun_url` varchar(1024) DEFAULT NULL COMMENT '群聊连接',
`is_very_domain` int(11) DEFAULT NULL COMMENT '是否检测备案,1,检测2,不检测',
`auto_sett_pay` int(11) DEFAULT NULL COMMENT '自动打款:1.否,2.是',
`reg_role` int(11) DEFAULT NULL COMMENT '注册时默认角色',
`user_create_role` int(11) DEFAULT NULL COMMENT '用户注册商户时,默认角色',
`pay_url_check` int(11) DEFAULT '0' COMMENT '检测域名:0,否,1.检测',
`vip_sale` decimal(10,2) DEFAULT '100.00' COMMENT 'vip价格',
`vip_staff2` decimal(10,2) DEFAULT '0.00' COMMENT 'vip提现费率',
`vip_staff1` decimal(10,2) DEFAULT '0.02' COMMENT 'vip交易费率',
`vip_method` int(11) DEFAULT '0' COMMENT 'vip收费模式:0.按天收费,1.按月收费',
`is_api_open` int(11) DEFAULT '1' COMMENT '是否开启支付:0.不开启,1.开启',
`close_api_detial` varchar(512) DEFAULT '服务器维护中,请稍后访问!' COMMENT '关闭网站理由',
`sys_threams` int(11) DEFAULT '0' COMMENT '系统主题',
`user_reg` int(11) DEFAULT '0' COMMENT '开放注册:0.不开放,1.开放',
`pay_title` varchar(256) DEFAULT '订单投诉/退款联系QQ:' COMMENT '支付标题',
`use_user_qq` int(11) DEFAULT '0' COMMENT '支付客服QQ:0.系统默认,1.用户QQ',
`show_pay_readme` int(11) DEFAULT '0' COMMENT '显示支付协议:0.不显示,1.显示',
`pay_readme` text COMMENT '用户支付协议内容',
`pay_to_alipay` int(11) DEFAULT '0' COMMENT '支付宝支付接口:0.官方接口,1.易支付接口',
`pay_to_wxpay` int(11) DEFAULT '0' COMMENT '微信支付接口:0.官方接口,1.易支付接口',
`pay_to_qqpay` int(11) DEFAULT '0' COMMENT 'qq支付接口:0.官方接口,1.易支付接口',
`test_alipay` int(11) DEFAULT '0' COMMENT '快捷收款(支付宝)状态:0.关闭,1.开启',
`test_qqpay` int(11) DEFAULT '0' COMMENT '快捷收款(QQ)状态:0.关闭,1.开启',
`test_wxpay` int(11) DEFAULT '0' COMMENT '快捷收款(微信)状态:0.关闭,1.开启',
`reg_alipay` int(11) DEFAULT '0',
`reg_qqpay` int(11) DEFAULT '0',
`reg_wxpay` int(11) DEFAULT '0',
`home_logo` varchar(512) DEFAULT NULL COMMENT '首页logo',
`home_qrcode` varchar(512) DEFAULT NULL COMMENT '首页二维码',
`auto_sett` int(11) DEFAULT '0' COMMENT '自动结算:0.关闭,1.打开',
`auto_settle_pay` int(11) DEFAULT '0' COMMENT '自动打款:0.关闭,1.打开',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
LOCK TABLES `system_web` WRITE;
INSERT INTO `system_web` (`id`, `pay_staff1`, `pay_staff2`, `kfqqq`, `kfqq`, `sett_min`, `http_url`, `copyright`, `icp_info`, `keywords`, `dec_text`, `site_name`, `music`, `user_def`, `reg_price`, `qun_url`, `is_very_domain`, `auto_sett_pay`, `reg_role`, `user_create_role`, `pay_url_check`, `vip_sale`, `vip_staff2`, `vip_staff1`, `vip_method`, `is_api_open`, `close_api_detial`, `sys_threams`, `user_reg`, `pay_title`, `use_user_qq`, `show_pay_readme`, `pay_readme`, `pay_to_alipay`, `pay_to_wxpay`, `pay_to_qqpay`, `test_alipay`, `test_qqpay`, `test_wxpay`, `reg_alipay`, `reg_qqpay`, `reg_wxpay`, `home_logo`, `home_qrcode`, `auto_sett`, `auto_settle_pay`)
VALUES
(1,0.02,0.01,'1','1',10,'https://pay.206so.com','二零六云支付','京ICP备14056891号-2','206云支付,206云易支付,206易支付,易支付,免签约支付平台','206云旗下免签约支付平台,致力于为更多用户提供稳定而又易用的支付平台!','206云支付','1234','<h3 style=\"font-family: 微软雅黑; color: rgb(51, 51, 51); font-size: 18px; text-align: center; line-height: normal;\">服务条款</h3><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">一、总则</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">1.1 二零六云支付的所有权和运营权归<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>所有。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">1.2 用户在注册之前,应当仔细阅读本协议,并同意遵守本协议后方可成为注册用户。一旦注册成功,则用户与<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>之间自动形成协议关系,用户应当受本协议的约束。用户在使用特殊的服务或产品时,应当同意接受相关协议后方能使用。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">1.3 本协议则可由<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>随时更新,用户应当及时关注并同意本站不承担通知义务。本站的通知、公告、声明或其它类似内容是本协议的一部分。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">二、服务内容</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">2.1 <span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>的具体内容由本站根据实际情况提供。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">2.2 本站仅提供相关的网络服务,除此之外与相关网络服务有关的设备(如个人电脑、手机、及其他与接入互联网或移动网有关的装置)及所需的费用(如为接入互联网而支付的电话费及上网费、为使用移动网而支付的手机费)均应由用户自行负担。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">三、用户账号</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">3.1 经本站注册系统完成注册程序并通过身份认证的用户即成为正式用户,可以获得本站规定用户所应享有的一切权限;未经认证仅享有本站规定的部分会员权限。<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>有权对会员的权限设计进行变更。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">3.2 用户只能按照注册要求使用真实姓名,及身份证号注册。用户有义务保证密码和账号的安全,用户利用该密码和账号所进行的一切活动引起的任何损失或损害,由用户自行承担全部责任,本站不承担任何责任。如用户发现账号遭到未授权的使用或发生其他任何安全问题,应立即修改账号密码并妥善保管,如有必要,请通知本站。因黑客行为或用户的保管疏忽导致账号非法使用,本站不承担任何责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">四、使用规则</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">4.1 遵守中华人民共和国相关法律法规,包括但不限于《中华人民共和国计算机信息系统安全保护条例》、《计算机软件保护条例》、《最高人民法院关于审理涉及计算机网络著作权纠纷案件适用法律若干问题的解释(法释[2004]1号)》、《全国人大常委会关于维护互联网安全的决定》、《互联网电子公告服务管理规定》、《互联网新闻信息服务管理规定》、《互联网著作权行政保护办法》和《信息网络传播权保护条例》等有关计算机互联网规定和知识产权的法律和法规、实施办法。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">4.2 用户对其自行发表、上传或传送的内容负全部责任,所有用户不得在本站任何页面发布、转载、传送含有下列内容之一的信息,否则本站有权自行处理并不通知用户:</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(1)违反宪法确定的基本原则的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(2)危害国家安全,泄漏国家机密,颠覆国家政权,破坏国家统一的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(3)损害国家荣誉和利益的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(4)煽动民族仇恨、民族歧视,破坏民族团结的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(5)破坏国家宗教政策,宣扬邪教和封建迷信的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(6)散布谣言,扰乱社会秩序,破坏社会稳定的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(7)散布淫秽、色情、赌博、暴力、恐怖或者教唆犯罪的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(8)侮辱或者诽谤他人,侵害他人合法权益的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(9)煽动非法集会、结社、游行、示威、聚众扰乱社会秩序的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(10)以非法民间组织名义活动的;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(11)含有法律、行政法规禁止的其他内容的。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(12)禁止未获授权的商户接入(如 私服、小说、影视等)。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">4.3 用户承诺对其发表或者上传于本站的所有信息(即属于《中华人民共和国著作权法》规定的作品,包括但不限于文字、图片、音乐、电影、表演和录音录像制品和电脑程序等)均享有完整的知识产权,或者已经得到相关权利人的合法授权;如用户违反本条规定造成本站被第三人索赔的,用户应全额补偿本站一切费用(包括但不限于各种赔偿费、诉讼代理费及为此支出的其它合理费用);</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">4.4 当第三方认为用户发表或者上传于本站的信息侵犯其权利,并根据《信息网络传播权保护条例》或者相关法律规定向本站发送权利通知书时,用户同意本站可以自行判断决定删除涉嫌侵权信息,除非用户提交书面证据材料排除侵权的可能性,本站将不会自动恢复上述删除的信息;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(1)不得为任何非法目的而使用网络服务系统;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(2)遵守所有与网络服务有关的网络协议、规定和程序;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(3)不得利用本站进行任何可能对互联网的正常运转造成不利影响的行为;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(4)不得利用本站进行任何不利于本站的行为。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">4.5 如用户在使用网络服务时违反上述任何规定,本站有权要求用户改正或直接采取一切必要的措施(包括但不限于删除用户张贴的内容、暂停或终止用户使用网络服务的权利)以减轻用户不当行为而造成的影响。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">五、隐私保护</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">5.1 本站不对外公开或向第三方提供单个用户的注册资料及用户在使用网络服务时存储在本站的非公开内容,但下列情况除外:</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(1)事先获得用户的明确授权;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(2)根据有关的法律法规要求;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(3)按照相关政府主管部门的要求;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(4)为维护社会公众的利益。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">5.2 本站可能会与第三方合作向用户提供相关的网络服务,在此情况下,如该第三方同意承担与本站同等的保护用户隐私的责任,则本站有权将用户的注册资料等提供给该第三方。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">5.3 在不透露单个用户隐私资料的前提下,本站有权对整个用户数据库进行分析并对用户数据库进行商业上的利用。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">六、版权声明</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.1 本站的文字、图片、音频、视频等版权均归国软育诚(北京)信息科技有限公司享有或与作者共同享有,未经本站许可,不得任意转载。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.2 本站特有的标识、版面设计、编排方式等版权均属<span style=\"font-size: 14px; text-indent: 28px;\">归国软育诚(北京)信息科技有限公司</span>享有,未经本站许可,不得任意复制或转载。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.3 使用本站的任何内容均应注明“来源于<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>”及署上作者姓名,按法律规定需要支付稿酬的,应当通知本站及作者及支付稿酬,并独立承担一切法律责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.4 本站享有所有作品用于其它用途的优先权,包括但不限于网站、电子杂志、平面出版等,但在使用前会通知作者,并按同行业的标准支付稿酬。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.5 本站所有内容仅代表作者自己的立场和观点,与本站无关,由作者本人承担一切法律责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">6.6 恶意转载本站内容的,本站保留将其诉诸法律的权利。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">七、责任声明</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.1 用户明确同意其使用本站网络服务所存在的风险及一切后果将完全由用户本人承担,<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>对此不承担任何责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.2 本站无法保证网络服务一定能满足用户的要求,也不保证网络服务的及时性、安全性、准确性。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.3 本站不保证为方便用户而设置的外部链接的准确性和完整性,同时,对于该等外部链接指向的不由本站实际控制的任何网页上的内容,本站不承担任何责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.4 对于因不可抗力或本站不能控制的原因造成的网络服务中断或其它缺陷,本站不承担任何责任,但将尽力减少因此而给用户造成的损失和影响。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.5 对于站向用户提供的下列产品或者服务的质量缺陷本身及其引发的任何损失,本站无需承担任何责任:</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(1)本站向用户免费提供的各项网络服务;</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">(2)本站向用户赠送的任何产品或者服务。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">7.6 本站有权于任何时间暂时或永久修改或终止本服务(或其任何部分),而无论其通知与否,本站对用户和任何第三人均无需承担任何责任。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">八、附则</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">8.1 本协议的订立、执行和解释及争议的解决均应适用中华人民共和国法律。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">8.2 如本协议中的任何条款无论因何种原因完全或部分无效或不具有执行力,本协议的其余条款仍应有效并且有约束力。</p><p style=\"text-indent: 2em; font-size: 14px; line-height: 20px;\">8.3 本协议解释权及修订权归<span style=\"font-size: 14px; text-indent: 28px;\">二零六云支付</span>所有。</p><p><br/></p>',88.00,'http://shang.qq.com/wpa/qunwpa?idkey=e32b5fbe88c355335f63fbd8d218cf58ca1cc16e5d436432f781352a5ea4c250',1,2,2,3,1,550.00,0.00,0.02,1,1,'服务器维护中,请稍后访问!',1,1,'订单(投诉/退款)联系QQ:',0,1,'1.首先感谢您选择我们,我们将会给您提供无微不至的支付体验,请在支付前认真查看以下信息.<br><br>\r\n2.如果您在刚刚下单的网站购买的是QQ钻/快手业务等,一般需要等24-48小时可以到账,请耐心等待.<br><br>\r\n3.如果您在下单24-48小时后业务仍然没有到账或支付后没有反应,请不要着急,也不要着急去投诉我们,毕竟您投诉了我们您也拿不到钱,不如静下心来,联系我们的订单投诉客服QQ:929512841,我方会尽快为您处理问题.<br><br>\r\n4.我方为正规公司,如果您恶意举报我方,一经查出,我方将会发出律师函,严厉追究法律责任!<br><br>',0,0,0,0,0,-1,0,0,0,'/group1/M00/00/00/rB_j7VslLUOAcSDNAAAMvw77yhY.picFil','/group1/M00/00/00/rB_j7VslLU6AEAEuAACfKyuxkGs.picFil',1,0);
UNLOCK TABLES;
DROP TABLE IF EXISTS `transfer_account`;
CREATE TABLE `transfer_account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`opt_user` int(11) DEFAULT NULL COMMENT '操作人',
`opt_time` datetime DEFAULT NULL COMMENT '创建时间',
`psd` varchar(256) DEFAULT NULL COMMENT '打款流水号',
`title` varchar(256) DEFAULT NULL COMMENT '打款说明',
`put_id` varchar(256) DEFAULT NULL COMMENT '收款人账号',
`put_name` varchar(256) DEFAULT NULL COMMENT '收款人真实姓名',
`price` decimal(10,2) DEFAULT NULL COMMENT '打款金额',
`status` int(11) DEFAULT NULL COMMENT '状态:1.失败,2.成功,3.等待中',
`error_info` varchar(256) DEFAULT NULL COMMENT '失败原因',
`trano` varchar(256) DEFAULT NULL COMMENT '流水号',
`p_type` int(11) DEFAULT NULL COMMENT '打款方式:1.微信,2.支付宝,3.银行卡',
`ip` varchar(128) DEFAULT NULL COMMENT 'ip',
`str` varchar(128) DEFAULT NULL COMMENT '微信支付请求随机字符串',
`bank_code` int(11) DEFAULT NULL COMMENT '银行代码',
`cmms_amt` decimal(10,2) DEFAULT NULL COMMENT '银行卡打款手续费',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Update SQL 2018-06-24
ALTER TABLE system_pay_config ADD wx_mpay_mode int DEFAULT 0 NULL COMMENT '微信H5支付模式:0.h5,1.公众号支付';
ALTER TABLE system_web ADD disable_shop_pay varchar(4096) DEFAULT 'AV,av' NULL COMMENT '禁止商品,英文逗号分隔';
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。