12345678910111213141516171819202122232425262728293031 |
- <?php
- return [
- 'Id' => '主键ID',
- 'Order_no' => '订单号',
- 'User_id' => '下单用户ID',
- 'Recive_id' => '接单用户ID',
- 'Auth_id' => '认证ID',
- 'Price' => '单价',
- 'Num' => '数量',
- 'Skill_image' => '技能图标',
- 'Skill_name' => '技能名称',
- 'Skill_unit' => '单位',
- 'Describe' => '备注',
- 'Is_comment' => '是否已评价',
- 'Is_comment 1' => '是',
- 'Is_comment 0' => '否',
- 'Status' => '状态',
- 'Status -2' => '已取消',
- 'Status -1' => '拒绝接单',
- 'Status 0' => '待付款',
- 'Status 1' => '待确定',
- 'Status 2' => '进行中',
- 'Status 3' => '已完成',
- 'Updatetime' => '更新时间',
- 'Createtime' => '创建时间',
- 'Recive.u_id' => '派单用户ID',
- 'Recive.nickname' => '派单用户昵称',
- 'User.u_id' => '接单用户ID',
- 'User.nickname' => '接单用户昵称'
- ];
|