order.php 828 B

12345678910111213141516171819202122232425
  1. <?php
  2. return [
  3. 'Orderid' => '订单ID',
  4. 'User_id' => '会员ID',
  5. 'Archives_id' => '文档ID',
  6. 'Archives_title' => '文档标题',
  7. 'Title' => '订单标题',
  8. 'Amount' => '订单金额',
  9. 'Payamount' => '支付金额',
  10. 'Paytype' => '支付类型',
  11. 'Paytime' => '支付时间',
  12. 'Ip' => 'IP地址',
  13. 'Useragent' => 'UserAgent',
  14. 'Memo' => '备注',
  15. 'Createtime' => '添加时间',
  16. 'Updatetime' => '更新时间',
  17. 'Status' => '状态',
  18. 'Paid' => '已支付',
  19. 'Expired' => '已过期',
  20. 'Created' => '未支付',
  21. 'Set to created' => '设为未支付',
  22. 'Set to paid' => '设为已支付',
  23. 'Set to expired' => '设为已过期',
  24. ];