| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%mch_diy_template}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property integer $mch_id
- * @property string $name
- * @property string $template
- * @property integer $is_delete
- * @property integer $addtime
- */
- class MchDiyTemplate extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%mch_diy_template}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'template', 'addtime', 'mch_id'], 'required'],
- [['store_id', 'is_delete', 'addtime', 'mch_id'], 'integer'],
- [['template'], 'string'],
- [['name'], 'string', 'max' => 45],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'mch_id' => '商户id',
- 'name' => 'Name',
- 'template' => 'Template',
- 'is_delete' => 'Is Delete',
- 'addtime' => 'Addtime',
- ];
- }
- }
|