|
...
|
...
|
@@ -87,7 +87,6 @@ class SendProduct extends Command |
|
|
|
* @time :2024/8/30 14:44
|
|
|
|
*/
|
|
|
|
public function sendProduct(){
|
|
|
|
$start_date = date('Y-m-d 00:00:00');
|
|
|
|
$end_date = date('Y-m-d 23:59:59');
|
|
|
|
$productModel = new Product();
|
|
|
|
$arr = $productModel->formatQuery(['send_time'=>['<=',$end_date],'status'=>3])->pluck('route')->toArray();
|
|
...
|
...
|
@@ -103,7 +102,6 @@ class SendProduct extends Command |
|
|
|
* @time :2024/8/30 15:19
|
|
|
|
*/
|
|
|
|
public function sendBlog(){
|
|
|
|
$start_date = date('Y-m-d 00:00:00');
|
|
|
|
$end_date = date('Y-m-d 23:59:59');
|
|
|
|
$blogModel = new Blog();
|
|
|
|
$arr = $blogModel->formatQuery(['release_at'=>['<=',$end_date],'status'=>3])->pluck('url')->toArray();
|
|
...
|
...
|
@@ -119,7 +117,6 @@ class SendProduct extends Command |
|
|
|
* @time :2024/8/30 15:19
|
|
|
|
*/
|
|
|
|
public function sendNews(){
|
|
|
|
$start_date = date('Y-m-d 00:00:00');
|
|
|
|
$end_date = date('Y-m-d 23:59:59');
|
|
|
|
$newsModel = new News();
|
|
|
|
$arr = $newsModel->formatQuery(['release_at'=>['<=',$end_date],'status'=>3])->pluck('url')->toArray();
|
...
|
...
|
|