| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\behaviors\TimestampBehavior;
- /**
- * Class WeChatSharerLiveQrCode
- * @package app\models
- * @property integer $id
- * @property string $sharer_appid
- * @property string $talent_appid
- * @property string $export_id
- * @property string $qrcode_url
- * @property integer $store_id
- * @property integer $qr_id
- * @property integer $saas_id
- **/
- class WeChatSharerLiveQrCode extends \yii\db\ActiveRecord
- {
- /**
- * @var mixed|null
- */
- public $mini_info;
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%wechat_sharer_live_qr_code}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id','qr_id','saas_id'], 'integer'],
- [["sharer_appid", "talent_appid", "export_id", "qrcode_url"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "商城ID",
- ];
- }
- }
|