Bank.php 608 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Bank extends Model{
  5. protected $connection = 'mysql_w';
  6. protected $table='banks';
  7. protected $guarded=[];
  8. //测试
  9. // public function getNameAttribute($value){
  10. // return '【 '.$value.' 】';
  11. // }
  12. //
  13. // protected $appends = ['info'];
  14. //
  15. // public function getInfoAttribute()
  16. // {
  17. // return $this->user_id.'-'.$this->name.'-'.$this->attributes['name'];
  18. // }
  19. //
  20. // public function setNameAttribute($value)
  21. // {
  22. // $this->attributes['name']='【'.$value.'】';
  23. // }
  24. }