Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-crm/models/
Upload File :
Current File : /var/www/html/dyna-crm/models/SalesSummary.php

<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "sales_summary".
 *
 * @property int $id
 * @property string $file_url
 * @property int $uploaded_by
 * @property string $uploaded_at
 */
class SalesSummary extends \yii\db\ActiveRecord {

    /**
     * {@inheritdoc}
     */
    public static function tableName() {
        return 'sales_summary';
    }

    /**
     * {@inheritdoc}
     */
    public function rules() {
        return [
            [['uploaded_by'], 'integer'],
            [['uploaded_at'], 'safe'],
            [['file_url'], 'required'],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function attributeLabels() {
        return [
            'id' => 'ID',
            'file_url' => 'Upload File',
            'uploaded_by' => 'Uploaded By',
            'uploaded_at' => 'Uploaded At',
        ];
    }

}