| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use app\jobs\storeSync\DiyCommon;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- /**
- * This is the model class for table "{{%video_goods}}".
- *
- * @property int $id
- * @property int $store_id 店铺id
- * @property int $goods_id 商品id
- * @property int $mini_id 视频号小店/小程序id
- * @property string $attr_no 商品规格编号
- * @property string video_shop_product_id 视频号小店商品id
- * @property string video_shop_sku_id 视频号小店商品sku_id
- */
- class VideoShopGoodsBind extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%video_shop_goods_bind}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['store_id', 'goods_id', 'mini_id'], 'integer'],
- [[ 'attr_no', 'video_shop_sku_id', 'video_shop_product_id'], 'string'],
- ];
- }
- }
|