order.php 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return [
  3. 'Id' => '主键ID',
  4. 'Order_no' => '订单号',
  5. 'User_id' => '下单用户ID',
  6. 'Recive_id' => '接单用户ID',
  7. 'Auth_id' => '认证ID',
  8. 'Price' => '单价',
  9. 'Num' => '数量',
  10. 'Skill_image' => '技能图标',
  11. 'Skill_name' => '技能名称',
  12. 'Skill_unit' => '单位',
  13. 'Describe' => '备注',
  14. 'Is_comment' => '是否已评价',
  15. 'Is_comment 1' => '是',
  16. 'Is_comment 0' => '否',
  17. 'Status' => '状态',
  18. 'Status -2' => '已取消',
  19. 'Status -1' => '拒绝接单',
  20. 'Status 0' => '待付款',
  21. 'Status 1' => '待确定',
  22. 'Status 2' => '进行中',
  23. 'Status 3' => '已完成',
  24. 'Updatetime' => '更新时间',
  25. 'Createtime' => '创建时间',
  26. 'Recive.u_id' => '派单用户ID',
  27. 'Recive.nickname' => '派单用户昵称',
  28. 'User.u_id' => '接单用户ID',
  29. 'User.nickname' => '接单用户昵称'
  30. ];