This commit is contained in:
wangjinlei
2024-08-13 14:37:16 +08:00
parent 0a6126543b
commit 5d8391e597
2 changed files with 52 additions and 57 deletions

View File

@@ -75,6 +75,7 @@ class Base extends Controller
protected $board_group_obj = "";
protected $committee_to_journal_obj = '';
protected $editor_to_journal_obj = '';
protected $email_account_obj;
public function __construct(\think\Request $request = null)
@@ -145,6 +146,7 @@ class Base extends Controller
$this->board_group_obj = Db::name("board_group");
$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");
}