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