Termin.php 756 Bytes
<?php

namespace common\models;

use Yii;

/**
 * This is the model class for table "termin".
 *
 * @property integer $termin_id
 * @property integer $termin_type_id
 * @property integer $page_id
 */
class Termin extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return 'termin';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['termin_type_id', 'page_id'], 'integer']
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'termin_id' => 'Termin ID',
            'termin_type_id' => 'Termin Type ID',
            'page_id' => 'Page ID',
        ];
    }
}