| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%diy_template}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property string $name
- * @property string $template
- * @property integer $is_delete
- * @property integer $addtime
- * @property integer $index
- * @property string $type
- */
- class DiyTemplate extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%diy_template}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'template', 'addtime'], 'required'],
- [['store_id', 'is_delete', 'addtime', 'is_index'], 'integer'],
- [['template', 'type'], 'string'],
- [['name', 'type'], 'string', 'max' => 45],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'name' => 'Name',
- 'template' => 'Template',
- 'is_delete' => 'Is Delete',
- 'addtime' => 'Addtime',
- 'type' => '类型 index 首页,user 用户中心,goods 商品详情',
- 'is_index' => '是否设为首页'
- ];
- }
- }
|