|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DealerOrderProduct extends Model
|
|
{
|
|
/**
|
|
* 商品管理津贴规则
|
|
*/
|
|
public function productManageSubsidyRules()
|
|
{
|
|
return $this->hasMany(DealerProductManageRule::class, 'product_id', 'product_id');
|
|
}
|
|
}
|