| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- /**
- * This is the model class for table "{{%integral_appreciation_user}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property integer $user_id
- * @property float $integral
- * @property float $total_integral
- * @property string $created_at
- * @property string $updated_at
- */
- class IntegralAppreciationUser extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%integral_appreciation_user}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class
- ]
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'user_id'], 'integer'],
- [['integral', 'total_integral', 'created_at', 'updated_at'], 'number']
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => '',
- 'store_id' => '商城ID',
- 'user_id' => '用户ID',
- 'integral' => '可提现积分数量',
- 'total_integral' => '总积分数量',
- 'created_at' => '',
- 'updated_at' => '',
- ];
- }
- }
|