| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- /**
- * This is the model class for table "{{%store_cloud}}".
- *
- * @property integer $id
- */
- class StoreTemplate extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_template}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- 'attributes' => [
- ActiveRecord::EVENT_BEFORE_INSERT => ['addtime'],
- ]
- ]
- ];
- }
-
- //
- // type //home/category/product/center/all
- public function useTemp($to_store_id = 0, $type = ['home']) {
- return StoreCopy::doCopy($this->store_id, $to_store_id, $type);
- }
- }
|