SysConfig.php 942 Bytes
<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "{{%sys_config}}".
 *
 * @property integer $id
 * @property string $conf_key
 * @property string $conf_value
 */
class SysConfig extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%sys_config}}';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['conf_key'], 'required'],
            [['conf_value'], 'string'],
            [['update_time'], 'integer'],
            [['conf_key'], 'string', 'max' => 50],
            [['conf_key'], 'unique'],
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'conf_key' => 'Conf Key',
            'conf_value' => 'Conf Value',
            'update_time' => 'Update Time',
        ];
    }
}