OaNoticeLogic.php 495 字节
<?php
/**
 * @remark :
 * @name   :OaNoticeLogic.php
 * @author :lyh
 * @method :post
 * @time   :2024/6/20 10:48
 */

namespace App\Http\Logic\Aside\Com;

use App\Http\Logic\Aside\BaseLogic;
use App\Models\Com\V6UpdateLog;
use App\Models\OaNotice\OaNotice;

class OaNoticeLogic extends BaseLogic
{
    /**
     * 初始数据
     */
    public function __construct()
    {
        parent::__construct();
        $this->model = new OaNotice();
        $this->param = $this->requestAll;
    }
}