Company.php 395 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: tandunzhao
  5. * Date: 2018/3/22
  6. * Time: 下午5:58
  7. */
  8. namespace App\Modules\Channel\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. class Company extends Model
  11. {
  12. protected $connection = 'api_mysql';
  13. protected $table = 'companies';
  14. protected $fillable = ['name', 'is_important', 'distribution_manages_id','fans_gender','city'];
  15. }