DiyOnlineTemplate.php 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 素算S2B2C [ 品牌企业零售数智化服务商——助力品牌企业经营增长 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright © 2024 SuSuan All Rights Reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 素算S2B2C并不是自由软件,未经许可不能去掉素算S2B2C相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: SuSuan Team [ service@susuan.cc ]
  10. // +----------------------------------------------------------------------
  11. namespace app\models;
  12. use Yii;
  13. /**
  14. * This is the model class for table "{{%diy_online_template}}".
  15. *
  16. * @property integer $id
  17. * @property string $name
  18. * @property string $template
  19. * @property string $image
  20. */
  21. class DiyOnlineTemplate extends \yii\db\ActiveRecord
  22. {
  23. /**
  24. * @inheritdoc
  25. */
  26. public static function tableName()
  27. {
  28. return '{{%diy_online_template}}';
  29. }
  30. }