| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StoreMedia
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property string $media_id
- * @property integer $mini_id
- * @property string $event
- * @property string $desc
- * @property string $local_url
- * @property integer $type
- **/
- class StoreMedia extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_media}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "store_id", "mini_id", 'type'], 'integer'],
- [["media_id", "event", "desc","local_url"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- "id"=> "ID",
- "store_id"=> "商城ID",
- "media_id"=> "微信素材ID",
- "mini_id"=> "小程序id",
- "event"=> "事件名称",
- "desc"=> "事件备注",
- "local_url"=> "本机地址",
- 'type' => '类型 0图片 1视频'
- ];
- }
- }
|