Files
api_arrahn/app/BankMaster.php
2021-02-02 18:57:04 +08:00

29 lines
484 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BankMaster extends Model
{
protected $connection = 'mysql7';
protected $table = 'bank';
protected $primaryKey = 'BANKCODE';
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}