| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class WechatSharerShop
- * @package app\models
- * @property integer $id
- * @property string $shop_appid
- * @property string $shop_nickname
- * @property string $shop_head_img
- * @property integer $store_id
- * @property integer $type
- * @property integer $bind_time
- **/
- class WechatSharerShop extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%wechat_sharer_shop}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'bind_time'], 'integer'],
- [["shop_appid", "shop_nickname", "shop_head_img"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "商城ID",
- ];
- }
- }
|