| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use Yii;
- /**
- * This is the model class for table "{{%fugou_cart}}".
- *
- * @property integer $id
- * @property integer $user_id
- * @property float $price
- * @property integer $store_id
- * @property integer $num
- * @property integer $goods_id
- * @property string $attr
- */
- class FugouCart extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%fugou_cart}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['user_id', 'store_id', 'goods_id', 'num'], 'integer'],
- [['price'], 'number'],
- [['attr'], 'string'],
- ];
- }
- }
|