123456789101112131415161718192021222324252627282930 |
- <?php
- return [
- 'Id' => '主键ID',
- 'User_id' => '用户ID',
- 'Order_no' => '订单编号',
- 'Money' => '充值金额',
- 'Jewel' => '获得钻石',
- 'Refund_money' => '退款金额',
- 'Service_fee' => '手续费',
- 'Transaction_id' => '支付订单号',
- 'Status' => '订单状态',
- 'Status -1' => '支付超时',
- 'Status 0' => '支付中',
- 'Status 1' => '支付成功',
- 'Status 2' => '退款',
- 'Business_no' => '商户号',
- 'Pay_type' => '支付渠道',
- 'Pay_type 1' => '微信',
- 'Pay_type 2' => '支付宝',
- 'Pay_type 3' => '衫德',
- 'Platform' => '充值平台',
- 'Platform 1' => '安卓',
- 'Platform 2' => 'ios',
- 'Platform 3' => '公众号',
- 'Createtime' => '创建时间',
- 'Paytime' => '支付时间',
- 'Updatetime' => '更新时间',
- 'User.nickname' => '昵称'
- ];
|