GeoWritingsLogic.php 559 字节
<?php
/**
 * @remark :
 * @name   :GeoWritingsLogic.php
 * @author :lyh
 * @method :post
 * @time   :2025/10/25 10:43
 */

namespace App\Http\Logic\Aside\Geo;

use App\Http\Logic\Aside\BaseLogic;
use App\Models\Geo\GeoWritings;

/**
 * @remark :文章任务
 * @name   :GeoWritingsLogic
 * @author :lyh
 * @method :post
 * @time   :2025/10/25 10:44
 */
class GeoWritingsLogic extends BaseLogic
{
    public function __construct()
    {
        parent::__construct();
        $this->param = $this->requestAll;
        $this->model = new GeoWritings();
    }
}