<?php namespace App\Model; class Company extends DataScopeBaseModel { protected $guarded = []; protected $table = "company"; //指定表 const CREATED_AT = null; const UPDATED_AT = null; protected $dateFormat = 'U'; public static $field = ['*']; }