| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.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 "{{%live_goods_ext}}".
- *
- * @property $id int(11) NOT NULL AUTO_INCREMENT,
- * @property $store_id int(11) DEFAULT NULL,
- * @property $goods_id int(11) NULL DEFAULT 0 ,
- * @property $is_delete tinyint(1) NOT NULL DEFAULT 0 ,
- * @property $created_at int(11) NULL DEFAULT 0 ,
- * @property $updated_at int(11) NULL DEFAULT 0 ,
- */
- class LiveGoodsExt extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%live_goods_ext}}';
- }
- }
|