| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%mch_visit_log}}".
- *
- * @property string $id
- * @property integer $user_id
- * @property integer $mch_id
- * @property integer $addtime
- * @property string $visit_date
- */
- class MchVisitLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%mch_visit_log}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['user_id', 'mch_id', 'addtime', 'visit_date'], 'required'],
- [['user_id', 'mch_id', 'addtime'], 'integer'],
- [['visit_date'], 'safe'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'user_id' => 'User ID',
- 'mch_id' => 'Mch ID',
- 'addtime' => 'Addtime',
- 'visit_date' => 'Visit Date',
- ];
- }
- }
|