26 lines
381 B
PHP
Executable File
26 lines
381 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @Author: fm453
|
|
* @Date: 2019-01-20 12:21:10
|
|
* @Last Modified by: fm453
|
|
* @Last Modified time: 2019-10-04 16:27:55
|
|
* @Email: fm453@lukegzs.com
|
|
*/
|
|
|
|
namespace common\models;
|
|
use Yii;
|
|
use yii\db\ActiveRecord;
|
|
|
|
class CSms extends ActiveRecord
|
|
{
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return '{{%c_sms}}';
|
|
}
|
|
}
|