TeamBonusOrderExt.php 557 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\models;
  8. use Yii;
  9. use yii\behaviors\TimestampBehavior;
  10. use yii\db\ActiveRecord;
  11. /**
  12. * This is the model class for table "{{%team_bonus_order_ext}}".
  13. *
  14. * @property integer $id
  15. */
  16. class TeamBonusOrderExt extends \yii\db\ActiveRecord
  17. {
  18. /**
  19. * @inheritdoc
  20. */
  21. public static function tableName()
  22. {
  23. return '{{%team_bonus_order_ext}}';
  24. }
  25. }