| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%register}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property integer $user_id
- * @property string $register_time
- * @property integer $created_at
- * @property integer $continuation
- * @property integer $integral
- */
- class Register extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%register}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'user_id', 'register_time'], 'required'],
- [['store_id', 'user_id', 'created_at', 'continuation', 'integral'], 'integer'],
- [['register_time'], 'string', 'max' => 25],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'user_id' => 'User ID',
- 'register_time' => 'Register Time',
- 'created_at' => 'Addtime',
- 'continuation' => 'continuation',
- 'integral' => 'integral',
- ];
- }
- }
|