jingcai-php/app/Model/Seller/ShopWithdraw.php

13 lines
201 B
PHP
Executable File

<?php
namespace App\Model\Seller;
use App\Model\BaseModel;
class ShopWithdraw extends BaseModel
{
public function shop() {
return $this->belongsTo(Shop::class, 'shop_id', 'id');
}
}