49 lines
1.3 KiB
PHP
49 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $settle_id
|
|
* @property int $merchant_id
|
|
* @property int $settle_type
|
|
* @property string $holder
|
|
* @property string $bank_card_no
|
|
* @property string $mobile
|
|
* @property string $province_code
|
|
* @property string $city_code
|
|
* @property string $fin_institution_code
|
|
* @property string $opening_bank_code
|
|
* @property int $credential_type
|
|
* @property string $id_card_name
|
|
* @property string $id_card_no
|
|
* @property string $bank_card_front_pic
|
|
* @property string $bank_card_back_pic
|
|
* @property string $non_leg_idcard_front_pic
|
|
* @property string $non_leg_idcard_back_pic
|
|
* @property string $non_leg_start
|
|
* @property string $non_leg_end
|
|
* @property string $opening_permit_pic
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class MerchantSettle extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'merchant_settle';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['settle_id' => 'integer', 'merchant_id' => 'integer', 'settle_type' => 'integer', 'credential_type' => 'integer'];
|
|
}
|