26 lines
385 B
PHP
Executable File
26 lines
385 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:18
|
|
* @Email: fm453@lukegzs.com
|
|
*/
|
|
|
|
namespace common\models;
|
|
use Yii;
|
|
use yii\db\ActiveRecord;
|
|
|
|
class CVcode extends ActiveRecord
|
|
{
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return '{{%c_vcode}}';
|
|
}
|
|
}
|