| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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}}".
- *
- * @property $id int(11) NOT NULL AUTO_INCREMENT,
- * @property $store_id int(11) NOT NULL DEFAULT '0',
- * @property $anchor_id int(11) NOT NULL DEFAULT 0 COMMENT '主播id' ,
- * @property $goods_id int(11) NOT NULL DEFAULT 0 COMMENT '商品id' ,
- * @property $status tinyint(1) NOT NULL DEFAULT 0 COMMENT '审核状态 0 待审核 1 审核通过 2 审核未通过' ,
- * @property $is_delete tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否删除' ,
- * @property $created_at int(11) NULL DEFAULT 0 ,
- * @property $updated_at int(11) NULL DEFAULT 0 ,
- */
- class LiveGoods extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%live_goods}}';
- }
- public function behaviors()
- {
- return [
- [
- // 自动更新创建和更新时间
- 'class' => TimestampBehavior::class,
- ]
- ];
- }
- }
|