dev
vine_liutk 2022-11-17 15:53:48 +08:00
parent 0d95dd8587
commit 038e3989ec
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ class DeviceWarningFilter extends ModelFilter
return $this->where('status', $status);
}
public function stratTime($startTime){
return $this->where('created_at', '>=', $startTime);
public function startTime($startTime){
return $this->where('created_at', '>', $startTime);
}
}