| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%saas_unit_founder}}".
- *
- * @property integer $saas_id
- * @property integer $admin_id
- * @property integer $level_id
- * @property integer $is_enable
- * @property integer $weight
- */
- class SaasUnitFounder extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%saas_unit_founder}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['saas_id', 'is_enable', 'level_id','weight','admin_id'], 'integer'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'saas_id' => '合伙人',
- 'level_id' => '等级',
- 'is_enable' => '是否开启',
- ];
- }
- }
|