| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%color}}".
- *
- * @property integer $id
- * @property string $rgb
- * @property string $color
- * @property integer $is_delete
- * @property integer $created_at
- */
- class Color extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%color}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['rgb', 'color'], 'required'],
- [['is_delete', 'created_at'], 'integer'],
- [['rgb', 'color'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'rgb' => 'rgb颜色码 例如:\"0,0,0\"',
- 'color' => '16进制颜色码例如:#ffffff',
- 'is_delete' => 'Is Delete',
- 'created_at' => 'Addtime',
- ];
- }
- }
|