Company.php 429 B

12345678910111213141516171819202122232425
  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. static function getCompanyList(){
  15. return self::get();
  16. }
  17. }