|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @remark :
|
|
|
|
* @name :EnterpriseProductController.php
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/3/26 11:05
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Logic\Bside\SeoSetting;
|
|
|
|
|
|
|
|
use App\Enums\Common\Code;
|
|
|
|
use App\Http\Controllers\Bside\BaseController;
|
|
|
|
use App\Models\Project\EnterpriseProduct;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :企业产品库
|
|
|
|
* @name :EnterpriseProductController
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/3/26 11:05
|
|
|
|
*/
|
|
|
|
class EnterpriseProductController extends BaseController
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @remark :获取产品库
|
|
|
|
* @name :getEnterProduct
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/3/26 11:06
|
|
|
|
*/
|
|
|
|
public function getEnterProduct(EnterpriseProduct $enterpriseProduct){
|
|
|
|
$this->map['project_id'] = $this->user['project_id'];
|
|
|
|
$data = $enterpriseProduct->list($this->map,$this->page,$this->row);
|
|
|
|
$this->response('success',Code::SUCCESS,$data);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|