38 lines
832 B
PHP
38 lines
832 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $mcc_id
|
|
* @property string $mcc_code
|
|
* @property string $parent_code
|
|
* @property string $mcc_name
|
|
* @property string $ls_code
|
|
* @property string $ls_name
|
|
* @property string $lkl_industry_code
|
|
* @property string $lkl_industry_name
|
|
* @property int $status
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class Mcc extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'mcc';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['mcc_id' => 'integer', 'status' => 'integer'];
|
|
}
|