This commit is contained in:
wangjinlei
2025-01-22 10:21:50 +08:00
parent 583bc87bbe
commit ce33a94db7
3 changed files with 177 additions and 3 deletions

View File

@@ -82,6 +82,8 @@ class Base extends Controller
protected $article_main_image_obj = "";
protected $article_main_table_obj = '';
protected $order_obj = "";
protected $article_main_log_obj = "";
protected $article_main_check_obj = "";
public function __construct(\think\Request $request = null)
@@ -159,6 +161,8 @@ class Base extends Controller
$this->article_main_image_obj = Db::name("article_main_image");
$this->article_main_table_obj = Db::name("article_main_table");
$this->order_obj = Db::name("order");
$this->article_main_log_obj = Db::name("article_main_log");
$this->article_main_check_obj = Db::name("article_main_check");
}