DefaultModel.php 388 B

123456789101112131415161718192021222324
  1. <?php
  2. echo "<?php\n";
  3. ?>
  4. namespace addons\<?= $model->name;?>\common\models;
  5. use Yii;
  6. use yii\db\ActiveRecord;
  7. use yii\behaviors\TimestampBehavior;
  8. /**
  9. * This is the model class for table "{{%addon_default}}".
  10. */
  11. class DefaultModel extends ActiveRecord
  12. {
  13. /**
  14. * {@inheritdoc}
  15. */
  16. public static function tableName()
  17. {
  18. return '{{%addon_default}}';
  19. }
  20. }
粤ICP备19079148号