<?php namespace App\Model; class ProductInventory extends UseScopeBaseModel { protected $table = "product_inventory"; //指定表 const CREATED_AT = 'crt_time'; const UPDATED_AT = null; protected $dateFormat = 'U'; }