ctms/addons-ctms/models/AcAlbumVersion.php

31 lines
583 B
PHP
Executable File

<?php
/**
* @Author: 嗨噜客(三亚)<fm453>
* @Date: 2025-04-10 23:19:11
* @FilePath: addons-ctms/models/AcAlbumVersion.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 AcAlbumVersion extends ActiveRecord
{
//指定数据库
public static function getDb()
{
return Yii::$app->get('ac');
}
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%ac_album_version}}';
}
}