123456789101112131415161718192021 |
- <?php
- /**
- * Created by PhpStorm.
- * User: tandunzhao
- * Date: 2018/3/22
- * Time: 下午5:58
- */
- namespace App\Modules\Channel\Models;
- use Illuminate\Database\Eloquent\Model;
- class Company extends Model
- {
- protected $table = 'companies';
- protected $fillable = ['name', 'is_important', 'distribution_manages_id','fans_gender','city'];
-
- }
|