...
|
...
|
@@ -1805,4 +1805,14 @@ class Car extends Base |
|
|
$this->success('查询用户信息成功',$return_data);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 改签
|
|
|
* @return void
|
|
|
*/
|
|
|
public function rebook(){
|
|
|
$id = $this->request->param("order_id");
|
|
|
$reservation_time = $this->request->param("reservation_time");//预约时间
|
|
|
$this->success('查询用户信息成功',[$id,$reservation_time]);
|
|
|
}
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|