| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%attr}}".
- *
- * @property integer $id
- * @property integer $attr_group_id
- * @property string $attr_name
- * @property integer $is_delete
- * @property integer $is_default
- */
- class Attr extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%attr}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['attr_group_id', 'attr_name'], 'required'],
- [['attr_group_id', 'is_delete', 'is_default'], 'integer'],
- [['attr_name'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'attr_group_id' => 'Attr Group ID',
- 'attr_name' => 'Attr Name',
- 'is_delete' => 'Is Delete',
- 'is_default' => '是否是默认属性',
- ];
- }
- }
|