|
if(!$request->input('start_time')||!$request->input('end_time')) return $this->error(ErrorCode::CLIENT_WRONG_PARAMS, '传入参数不正确!');
|
|
if(!$request->input('start_time')||!$request->input('end_time')) return $this->error(ErrorCode::CLIENT_WRONG_PARAMS, '传入参数不正确!');
|
|
$start_time = date('Y-m-d H:i:s',$request->input('start_time'));
|
|
$start_time = date('Y-m-d H:i:s',$request->input('start_time'));
|
|
$query = $query->where([['created_at','>=',$start_time],['created_at','<=',$end_time]]);
|
|
$query = $query->where([['created_at','>=',$start_time],['created_at','<=',$end_time]]);
|