| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\behaviors\TimestampBehavior;
- /**
- * Class WeChatSharer
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property integer $bind_time
- * @property string $talent_appid
- * @property string $talent_nickname
- * @property string $talent_head_img
- * @property string $related_finder_exportname_list
- * @property string $related_mp_biz_appid_list
- * @property integer $type
- * @property string $shop_appid
- * @property integer $promoter_type
- **/
- class WeChatSharerTalent extends \yii\db\ActiveRecord
- {
- /**
- * @var mixed|null
- */
- public $mini_info;
- const WECHAT_SHARER_TALENT_TYPE = 1;
- const WECHAT_SHARER_SHOP_TYPE = 2;
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%wechat_sharer_talent}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'bind_time', 'type', 'promoter_type'], 'integer'],
- [["talent_appid", "talent_nickname", "talent_head_img", "related_finder_exportname_list", "related_mp_biz_appid_list", "shop_appid"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "商城ID",
- ];
- }
- }
|