RiderOrder.php
473 字节
<?php
namespace app\api\model;
use think\Model;
class RiderOrder extends Model
{
// 自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
protected $createTime = 'createtime';
protected $updateTime = '';
public function address()
{
return $this->belongsTo('OrderAddress','address_id','id')->setEagerlyType(0);
}
public function orderdetail()
{
return $this->belongsTo('Order','order_id','id');
}
}