server/app/Model/Bank.php

34 lines
718 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $bank_id
* @property string $bank_name
* @property string $fin_institution_code
* @property string $fin_institution_name
* @property int $status
* @property string $create_time
* @property string $update_time
* @property string $deleted_at
*/
class Bank extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'bank';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['bank_id' => 'integer', 'status' => 'integer'];
}