Add (ai gen)

This commit is contained in:
2023-10-01 22:23:38 +08:00
parent b8fbfcdac2
commit 274e11193d
8 changed files with 664 additions and 4 deletions

View File

@@ -0,0 +1,48 @@
<?php
/**
* Created by Reliese Model.
*/
namespace App\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class ShopeeSellerCategory
*
* @property int $id
* @property string $seller
* @property int $category_id
* @property Carbon|null $last_ai_written_at
* @property int $write_counts
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @property Category $category
*
* @package App\Models
*/
class ShopeeSellerCategory extends Model
{
protected $table = 'shopee_seller_categories';
protected $casts = [
'category_id' => 'int',
'last_ai_written_at' => 'datetime',
'write_counts' => 'int'
];
protected $fillable = [
'seller',
'category_id',
'last_ai_written_at',
'write_counts'
];
public function category()
{
return $this->belongsTo(Category::class);
}
}

View File

@@ -32,6 +32,7 @@ class ShopeeSellerScrape extends Model
'category_id' => 'int',
'epoch' => 'int',
'last_ai_written_at' => 'datetime',
'write_counts' => 'int',
];
protected $fillable = [
@@ -41,6 +42,7 @@ class ShopeeSellerScrape extends Model
'epoch',
'filename',
'last_ai_written_at',
'write_counts'
];
public function category()