NewsExtendLogic.php 862 字节
<?php
/**
 * @remark :
 * @name   :NewsExtendLogic.php
 * @author :lyh
 * @method :post
 * @time   :2025/5/26 15:11
 */

namespace App\Http\Logic\Bside\News;

use App\Http\Logic\Bside\BaseLogic;
use App\Models\News\NewsExtend;

class NewsExtendLogic extends BaseLogic
{
    public function __construct()
    {
        parent::__construct();
        $this->model = new NewsExtend();
        $this->param = $this->requestAll;
    }

    /**
     * @remark :列表页
     * @name   :list
     * @author :lyh
     * @method :post
     * @time   :2025/5/26 15:17
     */
    public function list($map){
        $data = $this->model->list($map);
        return $this->success($data);
    }

    /**
     * @remark :
     * @name   :extendSave
     * @author :lyh
     * @method :post
     * @time   :2025/5/26 15:13
     */
    public function extendSave(){

    }
}