<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class PoPodetails extends Model { protected $guarded = []; protected $table = "po_podetails"; //指定表 const CREATED_AT = null; const UPDATED_AT = null; protected $dateFormat = 'U'; }