ctms/addons-ctms/models/AcAlbums.php

31 lines
564 B
PHP
Executable File

<?php
/**
* @Author: 嗨噜客(三亚)<fm453>
* @Date: 2025-04-10 23:19:11
* @FilePath: addons-ctms/models/AcAlbums.php
* @Description:
* @Email: 393213759@qq.com
* Copyright (c) 2025 by www.hiluker.cn, All Rights Reserved.
*/
namespace addons\models;
use Yii;
use yii\db\ActiveRecord;
class AcAlbums extends ActiveRecord
{
//指定数据库
public static function getDb()
{
return Yii::$app->get('ac');
}
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%ac_albums}}';
}
}