<?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 $connection = 'api_mysql';
	
    protected  $table = 'companies';
    protected  $fillable = ['name', 'is_important', 'distribution_manages_id','fans_gender','city'];

    
}