Your IP : 216.73.216.79


Current Path : /var/www/html/jpp/console/models/
Upload File :
Current File : /var/www/html/jpp/console/models/TestModuleGenerator.php

<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "test_module_generator".
 *
 * @property int $test_module_generator_id
 * @property string $description
 * @property int $count
 * @property string $creaetd_at
 */
class TestModuleGenerator extends \yii\db\ActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return 'test_module_generator';
    }

    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['count'], 'integer'],
            [['creaetd_at'], 'safe'],
            [['description'], 'string', 'max' => 500],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'test_module_generator_id' => 'Test Module Generator ID',
            'description' => 'Description',
            'count' => 'Count',
            'creaetd_at' => 'Creaetd At',
        ];
    }
}