43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $aid
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property int $deleted_at
|
|
* @property int $is_delete
|
|
* @property int $queried_at
|
|
* @property string $title
|
|
* @property string $description
|
|
* @property string $platform
|
|
* @property string $url
|
|
* @property string $order
|
|
* @property string $ip_address
|
|
* @property string $ip_source
|
|
* @property string $screen_path
|
|
*/
|
|
class AppKeywordsMonitorResult extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'app_keywords_monitor_result';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'aid' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'integer', 'is_delete' => 'integer', 'queried_at' => 'integer'];
|
|
}
|