server/app/Model/SubBank.php

36 lines
788 B
PHP

<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $bank_id
* @property string $province_code
* @property string $city_code
* @property string $fin_institution_code
* @property string $branch_name
* @property string $unionpay_code
* @property int $status
* @property string $create_time
* @property string $update_time
* @property string $deleted_at
*/
class SubBank extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'sub_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'];
}