| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- // +----------------------------------------------------------------------
- // | 素算S2B2C [ 品牌企业零售数智化服务商——助力品牌企业经营增长 ]
- // +----------------------------------------------------------------------
- // | Copyright © 2024 SuSuan All Rights Reserved.
- // +----------------------------------------------------------------------
- // | Licensed 素算S2B2C并不是自由软件,未经许可不能去掉素算S2B2C相关版权
- // +----------------------------------------------------------------------
- // | Author: SuSuan Team [ service@susuan.cc ]
- // +----------------------------------------------------------------------
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%diy_online_template}}".
- *
- * @property integer $id
- * @property string $name
- * @property string $template
- * @property string $image
- */
- class DiyOnlineTemplate extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%diy_online_template}}';
- }
- }
|