This commit is contained in:
wangjinlei
2024-12-10 15:17:46 +08:00
parent 5bd2e2e024
commit f11e97e89c
3 changed files with 304 additions and 23 deletions

View File

@@ -75,7 +75,9 @@ class Base extends Controller
protected $board_group_obj = "";
protected $committee_to_journal_obj = '';
protected $editor_to_journal_obj = '';
protected $email_account_obj;
protected $email_account_obj="";
protected $article_image_obj="";
protected $article_table_obj="";
public function __construct(\think\Request $request = null)
@@ -147,6 +149,8 @@ class Base extends Controller
$this->committee_to_journal_obj = Db::name("committee_to_journal");
$this->editor_to_journal_obj = Db::name("editor_to_journal");
$this->email_account_obj = Db::name("email_account");
$this->article_image_obj = Db::name("article_image");
$this->article_table_obj = Db::name("article_table");
}