<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class ApplyOrderDetail extends Model { protected $table = "apply_order_detail"; //指定表 const CREATED_AT = 'crt_time'; const UPDATED_AT = 'upd_time'; protected $dateFormat = 'U'; }