1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%visit_statistics_by_day}}".
- *
- * @property int $id
- * @property string $table_name
- * @property int $data_id
- * @property int $cat_id
- * @property int $user_id
- * @property int $is_ad
- * @property int $uv
- * @property int $pv
- * @property int $date
- */
- class VisitStatisticsByDay extends \app\common\models\EActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%visit_statistics_by_day}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['data_id', 'cat_id', 'user_id', 'is_ad', 'uv', 'pv', 'date'], 'integer'],
- [['date'], 'required'],
- [['table_name'], 'string', 'max' => 50],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'table_name' => 'Table Name',
- 'data_id' => 'Data ID',
- 'cat_id' => 'Cat ID',
- 'user_id' => 'User ID',
- 'is_ad' => 'Is Ad',
- 'uv' => 'Uv',
- 'pv' => 'Pv',
- 'date' => 'Date',
- ];
- }
- }
|