39 lines
952 B
PHP
39 lines
952 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $legal_id
|
|
* @property int $merchant_id
|
|
* @property int $credential_type
|
|
* @property string $legal_name
|
|
* @property string $id_card_no
|
|
* @property string $id_card_front_pic
|
|
* @property string $id_card_back_pic
|
|
* @property string $id_card_hand_pic
|
|
* @property string $id_card_start
|
|
* @property string $id_card_end
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class MerchantLegal extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'merchant_legal';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['legal_id' => 'integer', 'merchant_id' => 'integer', 'credential_type' => 'integer'];
|
|
}
|