| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class WeChatSharer
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property integer $saas_id
- * @property integer $bind_time
- * @property integer $level_id
- * @property string $sharer_appid
- * @property integer $commission_ratio
- * @property integer $commission_type
- * @property string $nickname
- * @property string $head_img_url
- * @property integer $bind_status
- * @property integer $register_status
- * @property string $sharer_openid
- **/
- class WeChatSharer extends \yii\db\ActiveRecord
- {
- /**
- * @var mixed|null
- */
- public $mini_info;
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%wechat_sharer}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'saas_id', 'bind_time', 'commission_ratio', 'commission_type', 'bind_status', 'register_status','level_id'], 'integer'],
- [["sharer_appid", "nickname", "head_img_url", "sharer_openid"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "商城ID",
- ];
- }
- }
|