AiPrefixLogic.php 421 字节
<?php
/**
 * @remark :
 * @name   :AiPrefixLogic.php
 * @author :lyh
 * @method :post
 * @time   :2023/9/27 15:27
 */

namespace App\Http\Logic\Aside\Ai;

use App\Http\Logic\Aside\BaseLogic;
use App\Models\Ai\AiPrefix;

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

}