| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use GuzzleHttp\Client;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use app\modules\admin\models\wechat_mp\CardForm;
- use app\utils\IotCloudHelper;
- use yii\redis\Cache;
- /**
- * This is the model class for table "{{%promoter_skus}}".
- *
- * @property integer $id
- * @property integer $sku_id
- * @property integer $product_id
- * @property string $thumb_img
- * @property string $sale_price
- * @property string $sku_attrs
- * @property string $sku_deliver_info
- * @property integer $stock_num
- * @property string $created_at
- * @property string $updated_at
- */
- class PromoterSkus extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%promoter_skus}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [[], 'required'],
- [['id', 'sku_id','product_id', 'stock_num'], 'integer'],
- [['sale_price'], 'number'],
- [['thumb_img', 'sku_attrs', 'sku_deliver_info','created_at','updated_at'], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- ];
- }
- }
|