49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $merchant_id
|
|
* @property int $org_id
|
|
* @property int $pid
|
|
* @property string $merchant_code
|
|
* @property string $merchant_name
|
|
* @property string $contact_name
|
|
* @property string $contact_mobile
|
|
* @property string $email
|
|
* @property string $service_mobile
|
|
* @property string $province_code
|
|
* @property string $city_code
|
|
* @property string $area_code
|
|
* @property string $address
|
|
* @property int $mode
|
|
* @property int $merchant_type
|
|
* @property string $mcc_code
|
|
* @property int $status
|
|
* @property string $door_pic
|
|
* @property string $indoor_pic
|
|
* @property string $desk_pic
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class Merchant extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'merchant';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['merchant_id' => 'integer', 'org_id' => 'integer', 'pid' => 'integer', 'mode' => 'integer', 'merchant_type' => 'integer', 'status' => 'integer'];
|
|
}
|