Company.php 355 B

123456789101112131415161718192021
  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 $table = 'companies';
  13. protected $fillable = ['name', 'is_important', 'distribution_manages_id','fans_gender','city'];
  14. }