| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- class PurchaseCart extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%purchase_cart}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['store_id', 'saas_id', 'goods_id', 'attr'], 'required'],
- [['store_id', 'saas_id', 'goods_id', 'num', 'created_at', 'is_delete'], 'integer'],
- [['attr'], 'string'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'saas_id' => '用户id',
- 'goods_id' => '商品id',
- 'num' => '商品数量',
- 'created_at' => 'created_at',
- 'is_delete' => 'Is Delete',
- 'attr' => '规格',
- ];
- }
- }
|