| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%booking_goods_cat}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property string $name
- * @property string $pic_url
- * @property integer $sort
- * @property integer $is_delete
- * @property integer $is_show
- * @property integer $created_at
- * @property integer $updated_at
- */
- class BookingGoodsCat extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%booking_goods_cat}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|