| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%saas_history}}".
- *
- * @property integer $id
- * @property integer $user_id
- * @property integer $updated_at
- * @property integer $store_id
- */
- class SaasHistory extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%saas_history}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['user_id', 'store_id', 'updated_at'], 'required'],
- [['user_id', 'store_id', 'updated_at'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'user_id' => 'User ID',
- 'updated_at' => 'update time',
- 'store_id' => '商城id',
- ];
- }
- }
|