37 lines
849 B
PHP
37 lines
849 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $license_id
|
|
* @property int $merchant_id
|
|
* @property string $license_name
|
|
* @property string $license_no
|
|
* @property string $license_address
|
|
* @property string $license_start
|
|
* @property string $license_end
|
|
* @property string $license_pic
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class MerchantLicense extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'merchant_license';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['license_id' => 'integer', 'merchant_id' => 'integer'];
|
|
}
|