汇率自动获取功能

This commit is contained in:
wangjinlei
2025-04-08 11:40:14 +08:00
parent e4c1ffc4c8
commit ae82c44d82
2 changed files with 14 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ class Base extends Controller
protected $major_to_user_obj = "";
protected $major_to_article_obj = "";
protected $paystation_obj = "";
protected $exchange_rate_obj = "";
public function __construct(\think\Request $request = null)
@@ -169,6 +170,7 @@ class Base extends Controller
$this->major_to_user_obj = Db::name("major_to_user");
$this->major_to_article_obj = Db::name("major_to_article");
$this->paystation_obj = Db::name("paystation");
$this->exchange_rate_obj = Db::name("exchange_rate");
}