| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%video_goods_reduce_show}}".
- *
- * @property int $id 主键
- * @property int $user_id 用户id
- * @property int $author 举报者用户ID/作者
- * @property int $created_at 创建时间
- * @property int $store_id 商城ID
- * @property int $vl_id 视频ID
- * @property int $type
- */
- class VideoGoodsReduceShow extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%video_goods_reduce_show}}';
- }
- public function rules()
- {
- return [
- [['id', 'user_id', 'author', 'created_at', 'store_id', 'vl_id', 'type' ], 'integer']
- ];
- }
- public function attributeLabels()
- {
- return [
- "id" => "主键",
- "user_id" => "用户id",
- "author" => "举报者用户ID/作者",
- "created_at" => "创建时间",
- "store_id" => "商城ID",
- "vl_id" => "视频ID",
- "type" => "类型 1减少此类内容 2不看该作者"
- ];
- }
- }
|