You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bjhedasx/app/fire/model/FireProductCollect.php

15 lines
285 B

<?php
namespace app\fire\model;
use think\model\concern\SoftDelete;
class FireProductCollect extends Base
{
use SoftDelete;
public function collectProduct()
{
return $this->hasOne('FireProduct','id','product_id')->bind(['supply_id','cover_img','name']);
}
}