TutorialLogic.php 1.1 KB
<?php
/**
 * @remark :
 * @name   :TutorialLogic.php
 * @author :lyh
 * @method :post
 * @time   :2024/5/13 17:38
 */

namespace App\Http\Logic\Aside\Tutorial;

use App\Http\Logic\Aside\BaseLogic;
use App\Models\Tutorial\Tutorial;

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

    /**
     * @remark :保存数据
     * @name   :saveTutorial
     * @author :lyh
     * @method :post
     * @time   :2024/5/13 17:39
     */
    public function saveTutorial(){
        return $this->success();
    }

    /**
     * @remark :修改状态
     * @name   :statusTutorial
     * @author :lyh
     * @method :post
     * @time   :2024/5/13 17:42
     */
    public function statusTutorial(){
        return $this->success();
    }

    /**
     * @remark :删除数据
     * @name   :delTutorial
     * @author :lyh
     * @method :post
     * @time   :2024/5/13 17:41
     */
    public function delTutorial(){
        return $this->success();
    }
}