P
聚合支付 API 文档
V1.0

🔑 对接凭证

api_key
商户身份标识
所有接口必传,放在请求头 x-api-key
secret_key
签名密钥
仅用于验证回调通知时的签名
严禁外泄
callback_url
回调通知地址
支付成功后平台会POST通知到此地址

📋 通用说明

公共请求头
Header 必填 说明
Content-Type 固定为 application/json
x-api-key 平台分配的 api_key
💡 认证方式:平台通过请求头 x-api-key 识别商户身份,Body 不需要传 api_key 和 sign
统一返回格式
{
  "code": 200,      // 200 = 成功
  "msg": "success", // 提示信息
  "data": { ... }   // 业务数据
}
code 含义
200成功
0失败(msg 中有错误原因)
订单状态枚举
status 含义 说明
0待支付订单已创建,等待用户付款
1已收款平台已确认收款
2已过期超过有效期未付款,订单失效

📡 接口一:获取收款方式列表

POST /api/home/payList

获取当前可用的收款方式列表(类别名称、金额范围)。无需传 Body 参数

请求示例

POST /api/home/payList
Content-Type: application/json
x-api-key: 你的api_key

{}

Body 传空 JSON {} 即可。

成功返回

{
  "code": 200,
  "msg": "success",
  "data": [
    {
      "id": 1,
      "cate_name": "微信收款",        // 收款方式名称
      "min_amount": 10,               // 最小金额(元)
      "max_amount": 5000              // 最大金额(元)
    },
    {
      "id": 2,
      "cate_name": "支付宝收款",
      "min_amount": 10,
      "max_amount": 5000
    },
    {
      "id": 3,
      "cate_name": "银行卡收款",
      "min_amount": 100,
      "max_amount": 50000
    }
  ]
}

📡 接口二:创建收款订单

POST /api/home/getPay

创建一笔收款订单,返回收款人信息(姓名、账号、二维码等),展示给用户去付款。

请求参数(JSON Body)

参数 类型 必填 说明
pay_id int 收款方式ID(通过 payList 获取)
amount float 订单金额(元),如 100.00
order_no string 商户订单号,必须唯一,用于后续查单和回调匹配

请求示例

POST /api/home/getPay
Content-Type: application/json
x-api-key: 你的api_key

{
  "pay_id": 1,
  "amount": 100.00,
  "order_no": "SHOP202405240001"
}

成功返回

{
  "code": 200,
  "msg": "success",
  "data": {
    "order_no": "CZ20240524120000AbCd1234",   // 平台订单号(重要:查单时用这个)
    "out_order_no": "SHOP202405240001",        // 商户订单号(原样返回)
    "amount": 100.00,
    "info": {
      "cate_name": "微信收款",                 // 收款方式名称
      "real_name": "张三",                     // 收款人姓名
      "nickname": "张三的店铺",                // 收款人昵称
      "qrcode": "https://xxx.com/qr.png",     // 收款二维码(图片URL)
      "account": "138****8888",                // 收款账号
      "phone": "138****8888"                   // 收款手机号
    },
    "expire_time": 1716570000,                 // 订单过期时间戳(秒)
    "expire_at": "2024-05-24 13:00:00",       // 订单过期时间(格式化)
    "expire_minutes": 10                       // 剩余有效分钟数
  }
}
⚠️ 注意:请保存 order_no(平台订单号),后续查单和回调都会用到。

📡 接口三:查询订单状态

POST /api/home/queryOrder

根据平台订单号查询支付状态。适用于轮询场景,建议每 5-10秒 查询一次,status=1 时表示已收款。

请求参数(JSON Body)

参数 类型 必填 说明
order_no string 平台订单号(getPay 返回的 order_no)

请求示例

POST /api/home/queryOrder
Content-Type: application/json
x-api-key: 你的api_key

{
  "order_no": "CZ20240524120000AbCd1234"
}

成功返回

{
  "code": 200,
  "msg": "success",
  "data": {
    "out_order_no": "SHOP202405240001",          // 商户订单号
    "order_no": "CZ20240524120000AbCd1234",      // 平台订单号
    "amount": 100.00,
    "status": 1,                                  // 0=待支付  1=已收款  2=已过期
    "pay_time": 1716567890,                       // 收款时间戳(秒)
    "create_time": 1716567800                     // 创建时间戳(秒)
  }
}

轮询流程图

  ┌─────────┐    每5~10秒调一次    ┌──────────────┐
  │ 你的系统 │ ──────────────────→ │  queryOrder   │
  │         │                      │              │
  │         │ ←── status=0 ─────── │  还没付,继续等 │
  │         │ ←── status=1 ─────── │  已收款,停止轮询 │
  │         │ ←── status=2 ─────── │  已过期,停止轮询 │
  └─────────┘                      └──────────────┘
💡 轮询建议:创建订单后每 10~30 秒调一次,status=0(待本平台码商确认),status=1(已收款)或 status=2(已过期)时停止。最多轮询 10 分钟。10分钟未付款将自动取消订单转换为失效状态~可从新拉起支付订单

📡 接口四:回调通知(平台→商户)

POST callback_url(你告诉客服在后台配置的地址如 https://url/*** - http://url/***)

支付成功后,平台会主动向你的 callback_url 发送 POST 通知。 这是最实时的通知方式,强烈建议接入

平台 POST 给你的数据(JSON)

{
  "merchant_no": "M2024001",              // 商户编号
  "out_order_no": "SHOP202405240001",     // 商户订单号
  "order_no": "CZ20240524120000AbCd1234", // 平台订单号
  "amount": "100.00",                     // 订单金额(字符串)
  "status": 1,                            // 1 = 已收款
  "pay_time": 1716567890,                 // 收款时间戳
  "nonce": "abc123def456",                // 随机字符串(防重放)
  "timestamp": "1716567890",              // 当前时间戳
  "sign": "A1B2C3D4E5F6..."              // 签名(验签用)
}

你收到回调后必须做的事:

1
验证签名 sign

防止伪造通知。验证方法见下方「签名验证规则」。

2
防重放检查

确认 timestamp 与当前时间相差不超过60秒;
检查 nonce 是否已处理过(建议用 Redis/DB 缓存去重)。

3
更新订单状态

根据 out_order_no 找到订单,标记为"已支付",处理发货等业务逻辑。

4
返回 success

验签通过后,直接返回纯文本 success
不要返回 HTML、JSON、XML,不要带空格和换行。

🔐 回调签名验证规则

① 将收到的参数中除了 sign 外的所有参数按参数名 ASCII 码升序排列

② 拼接字符串:key1=value1&key2=value2&key=你的secret_key

③ 取 MD5 并转大写,与收到的 sign 比对

示例:收到的参数为 { amount:"100.00", order_no:"CZ...", ... }

排序后拼接:
amount=100.00&merchant_no=M2024001&nonce=abc123&order_no=CZ...&out_order_no=SHOP001&pay_time=1716567890&status=1×tamp=1716567890&key=你的secret_key

MD5大写后就是你该收到的 sign 值,两者一致则验签通过。
⚠️ 重要提醒:
  • 如果平台未收到 success(或网络超时5秒),本次通知视为失败
  • 平台目前不会自动重试回调,建议同时用查询接口轮询作为兜底方案
  • secret_key 严禁外泄,只在你的服务端使用

🚀 快速接入流程

1
联系平台获取 api_keysecret_key
2
联系平台在后台配置你的 callback_url(用于接收支付结果通知)
3
调用 /api/home/payList 获取可用收款方式
4
调用 /api/home/getPay 创建订单,将返回的收款信息展示给用户
5
等待支付结果:
  • 方式一(推荐):实现回调接口,平台主动通知
  • 方式二(兜底):轮询 /api/home/queryOrder
完成!订单 status=1 时即可处理发货等后续业务。
基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-05-25 00:29:30 HTTP/2.0 GET : https://paytest.k1s.one/
  2. 运行时间 : 0.169969s [ 吞吐率:5.88req/s ] 内存消耗:4,825.94kb 文件加载:176
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=d06a60a57bfda0a7e68ca119b0895cbd
  1. /www/wwwroot/paytest.k1s.one/public/index.php ( 0.79 KB )
  2. /www/wwwroot/paytest.k1s.one/vendor/autoload.php ( 0.17 KB )
  3. /www/wwwroot/paytest.k1s.one/vendor/composer/autoload_real.php ( 2.57 KB )
  4. /www/wwwroot/paytest.k1s.one/vendor/composer/platform_check.php ( 0.90 KB )
  5. /www/wwwroot/paytest.k1s.one/vendor/composer/ClassLoader.php ( 15.69 KB )
  6. /www/wwwroot/paytest.k1s.one/vendor/composer/autoload_static.php ( 11.65 KB )
  7. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /www/wwwroot/paytest.k1s.one/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.22 KB )
  14. /www/wwwroot/paytest.k1s.one/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  15. /www/wwwroot/paytest.k1s.one/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  16. /www/wwwroot/paytest.k1s.one/vendor/symfony/polyfill-php83/bootstrap.php ( 1.92 KB )
  17. /www/wwwroot/paytest.k1s.one/vendor/ralouphie/getallheaders/src/getallheaders.php ( 1.60 KB )
  18. /www/wwwroot/paytest.k1s.one/vendor/symfony/clock/Resources/now.php ( 0.67 KB )
  19. /www/wwwroot/paytest.k1s.one/vendor/symfony/translation/Resources/functions.php ( 0.55 KB )
  20. /www/wwwroot/paytest.k1s.one/vendor/mustangostang/spyc/Spyc.php ( 35.12 KB )
  21. /www/wwwroot/paytest.k1s.one/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.60 KB )
  22. /www/wwwroot/paytest.k1s.one/vendor/guzzlehttp/guzzle/src/functions_include.php ( 0.16 KB )
  23. /www/wwwroot/paytest.k1s.one/vendor/guzzlehttp/guzzle/src/functions.php ( 5.54 KB )
  24. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-captcha/src/helper.php ( 1.37 KB )
  25. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  26. /www/wwwroot/paytest.k1s.one/vendor/symfony/var-dumper/VarDumper.php ( 4.23 KB )
  27. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-queue/src/common.php ( 1.01 KB )
  28. /www/wwwroot/paytest.k1s.one/vendor/zoujingli/ip2region/src/common.php ( 3.23 KB )
  29. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  30. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  31. /www/wwwroot/paytest.k1s.one/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  32. /www/wwwroot/paytest.k1s.one/app/provider.php ( 0.19 KB )
  33. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Http.php ( 6.22 KB )
  34. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  35. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  36. /www/wwwroot/paytest.k1s.one/app/common.php ( 0.89 KB )
  37. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/helper.php ( 18.77 KB )
  38. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Config.php ( 5.93 KB )
  39. /www/wwwroot/paytest.k1s.one/config/app.php ( 1.01 KB )
  40. /www/wwwroot/paytest.k1s.one/config/cache.php ( 0.78 KB )
  41. /www/wwwroot/paytest.k1s.one/config/captcha.php ( 1.13 KB )
  42. /www/wwwroot/paytest.k1s.one/config/console.php ( 0.30 KB )
  43. /www/wwwroot/paytest.k1s.one/config/cookie.php ( 0.56 KB )
  44. /www/wwwroot/paytest.k1s.one/config/cors.php ( 0.33 KB )
  45. /www/wwwroot/paytest.k1s.one/config/database.php ( 2.13 KB )
  46. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  47. /www/wwwroot/paytest.k1s.one/config/filesystem.php ( 0.61 KB )
  48. /www/wwwroot/paytest.k1s.one/config/lang.php ( 0.91 KB )
  49. /www/wwwroot/paytest.k1s.one/config/log.php ( 1.35 KB )
  50. /www/wwwroot/paytest.k1s.one/config/middleware.php ( 0.19 KB )
  51. /www/wwwroot/paytest.k1s.one/config/queue.php ( 1.29 KB )
  52. /www/wwwroot/paytest.k1s.one/config/route.php ( 1.89 KB )
  53. /www/wwwroot/paytest.k1s.one/config/session.php ( 0.57 KB )
  54. /www/wwwroot/paytest.k1s.one/config/trace.php ( 0.34 KB )
  55. /www/wwwroot/paytest.k1s.one/config/view.php ( 0.82 KB )
  56. /www/wwwroot/paytest.k1s.one/config/worker.php ( 1.27 KB )
  57. /www/wwwroot/paytest.k1s.one/app/event.php ( 0.25 KB )
  58. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Event.php ( 7.77 KB )
  59. /www/wwwroot/paytest.k1s.one/app/service.php ( 0.13 KB )
  60. /www/wwwroot/paytest.k1s.one/app/AppService.php ( 0.26 KB )
  61. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  62. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  63. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  64. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  65. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  66. /www/wwwroot/paytest.k1s.one/vendor/services.php ( 0.31 KB )
  67. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  68. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  69. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  70. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-captcha/src/CaptchaService.php ( 0.52 KB )
  71. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-cors/src/Service.php ( 0.24 KB )
  72. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-multi-app/src/Service.php ( 1.08 KB )
  73. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-queue/src/queue/Service.php ( 1.24 KB )
  74. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  75. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  76. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-worker/src/Service.php ( 0.78 KB )
  77. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  78. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  79. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  80. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  81. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  82. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.20 KB )
  83. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.75 KB )
  84. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  85. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  86. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.30 KB )
  87. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  88. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  89. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  90. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  91. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  92. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  93. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  94. /www/wwwroot/paytest.k1s.one/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  95. /www/wwwroot/paytest.k1s.one/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  96. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  97. /www/wwwroot/paytest.k1s.one/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  98. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-helper/src/helper/Arr.php ( 17.45 KB )
  99. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  100. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/cache/Driver.php ( 9.02 KB )
  101. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  102. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Console.php ( 22.98 KB )
  103. /www/wwwroot/paytest.k1s.one/app/Request.php ( 0.09 KB )
  104. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Request.php ( 54.64 KB )
  105. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/traits/UrlHandler.php ( 6.05 KB )
  106. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/traits/DomainHandler.php ( 5.49 KB )
  107. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/traits/HttpMethodHandler.php ( 4.74 KB )
  108. /www/wwwroot/paytest.k1s.one/app/middleware.php ( 0.30 KB )
  109. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  110. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  111. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/middleware/LoadLangPack.php ( 3.50 KB )
  112. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  113. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  114. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  115. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  116. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  117. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  118. /www/wwwroot/paytest.k1s.one/app/middleware/RequestMiddleware.php ( 1.67 KB )
  119. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-cors/src/HandleCors.php ( 7.99 KB )
  120. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-multi-app/src/MultiApp.php ( 7.06 KB )
  121. /www/wwwroot/paytest.k1s.one/app/home/common.php ( 0.01 KB )
  122. /www/wwwroot/paytest.k1s.one/app/home/event.php ( 0.07 KB )
  123. /www/wwwroot/paytest.k1s.one/app/home/middleware.php ( 0.06 KB )
  124. /www/wwwroot/paytest.k1s.one/app/home/middleware/RequestLog.php ( 2.51 KB )
  125. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  126. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/RuleName.php ( 5.74 KB )
  127. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  128. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.41 KB )
  129. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/Rule.php ( 27.49 KB )
  130. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  131. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  132. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/route/Dispatch.php ( 11.32 KB )
  133. /www/wwwroot/paytest.k1s.one/app/home/controller/Index.php ( 0.39 KB )
  134. /www/wwwroot/paytest.k1s.one/app/home/controller/Base.php ( 2.52 KB )
  135. /www/wwwroot/paytest.k1s.one/app/BaseController.php ( 2.05 KB )
  136. /www/wwwroot/paytest.k1s.one/extend/lib/TraitResponse.php ( 3.99 KB )
  137. /www/wwwroot/paytest.k1s.one/app/model/system/Config.php ( 1.10 KB )
  138. /www/wwwroot/paytest.k1s.one/app/model/BaseModel.php ( 8.35 KB )
  139. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.73 KB )
  140. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/PDOConnection.php ( 53.74 KB )
  141. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  142. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  143. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  144. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/Builder.php ( 24.07 KB )
  145. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  146. /www/wwwroot/paytest.k1s.one/vendor/symfony/polyfill-mbstring/Mbstring.php ( 36.36 KB )
  147. /www/wwwroot/paytest.k1s.one/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php ( 23.96 KB )
  148. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/Query.php ( 15.97 KB )
  149. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  150. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  151. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  152. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  153. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  154. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  155. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  156. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  157. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  158. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  159. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/log/driver/File.php ( 6.10 KB )
  160. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  161. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  162. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  163. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  164. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  165. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/Response.php ( 9.07 KB )
  166. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  167. /www/wwwroot/paytest.k1s.one/extend/lib/IpHelper.php ( 1.06 KB )
  168. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/facade/Request.php ( 9.20 KB )
  169. /www/wwwroot/paytest.k1s.one/app/model/merchant/MerchantLog.php ( 0.59 KB )
  170. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  171. /www/wwwroot/paytest.k1s.one/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  172. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  173. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  174. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  175. /www/wwwroot/paytest.k1s.one/runtime/home/temp/a0afbf7d85d9f8ac5ee7d44bd1ee9e26.php ( 27.42 KB )
  176. /www/wwwroot/paytest.k1s.one/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.005912s ] mysql:host=127.0.0.1;port=3306;dbname=news;charset=utf8
  2. SHOW FULL COLUMNS FROM `zm_system_config` [ RunTime:0.005696s ]
  3. SELECT `value` FROM `zm_system_config` WHERE `key` = 'expire_time' LIMIT 1 [ RunTime:0.001792s ]
  4. SHOW FULL COLUMNS FROM `zm_merchant_log` [ RunTime:0.003077s ]
  5. INSERT INTO `zm_merchant_log` SET `user_id` = 0 , `username` = '' , `url` = '/' , `method` = 'GET' , `params` = '[]' , `ip` = '216.73.216.23' , `user_agent` = 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)' , `response_time` = 80 , `status` = 200 , `remark` = '【 ID:0】 home/index/index' , `create_time` = 1779640170 [ RunTime:0.006388s ]
0.190682s