<?php
namespace Pcb\Model;
use  Illuminate\Database\Eloquent\Model  as Eloquent;

class PcbOrder extends Eloquent
{
    protected $connection="pcb";
    protected $table = 'order';
    protected $primaryKey = 'order_id';
    const CREATED_AT = 'create_time';
    const UPDATED_AT = 'update_time';
    public $timestamps = true;




    public function fromDateTime($value){
        return strtotime(parent::fromDateTime($value));
    }
    
    
    
    
    
    
}

  

相关文章:

  • 2022-12-23
  • 2021-12-29
  • 2022-01-15
  • 2021-06-06
  • 2021-07-25
  • 2021-12-20
  • 2021-05-20
猜你喜欢
  • 2021-07-12
  • 2021-07-31
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案