- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class ItemReport extends Model
- {
- protected $guarded = [];
- protected $table = "item_report"; //指定表
- const CREATED_AT = null;
- const UPDATED_AT = null;
- protected $dateFormat = 'U';
- public static $field = ['*'];
- }
|