LiveGoodsExt.php 828 B

1234567891011121314151617181920212223242526272829303132
  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 "{{%live_goods_ext}}".
  13. *
  14. * @property $id int(11) NOT NULL AUTO_INCREMENT,
  15. * @property $store_id int(11) DEFAULT NULL,
  16. * @property $goods_id int(11) NULL DEFAULT 0 ,
  17. * @property $is_delete tinyint(1) NOT NULL DEFAULT 0 ,
  18. * @property $created_at int(11) NULL DEFAULT 0 ,
  19. * @property $updated_at int(11) NULL DEFAULT 0 ,
  20. */
  21. class LiveGoodsExt extends \yii\db\ActiveRecord
  22. {
  23. /**
  24. * @inheritdoc
  25. */
  26. public static function tableName()
  27. {
  28. return '{{%live_goods_ext}}';
  29. }
  30. }