| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class User
- * @package app\modules\common\models
- *
- * @property integer $id
- * @property integer $level
- * @property string $name
- * @property integer $is_delete
- * @property integer $created_at
- */
- class CloudInventoryLevel extends \yii\db\ActiveRecord
- {
- /**
- * 是否删除
- */
- CONST IS_DELETE = 1;
- CONST NOT_DELETE = 0;
- /**
- * @return string
- */
- public static function tableName()
- {
- return '{{%cloud_inventory_level}}';
- }
- public function rules()
- {
- return [
- [['id', 'level', 'is_delete','created_at'],'integer'],
- [['name'], 'string']
- ];
- }
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'level' => '等级',
- 'name' => '等级名称'
- ];
- }
- }
|