xhRecommend.php 481 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhRecommend".
  5. *
  6. * @property int $id
  7. * @property int $sjId 商家id
  8. * @property string $goods 首页推荐的商品json
  9. * @property string $slide 幻灯片内容
  10. * @property string $createTime 创建时间
  11. * @property string $updateTime
  12. */
  13. class xhRecommend extends xhBaseModel
  14. {
  15. /**
  16. * @inheritdoc
  17. */
  18. public static function tableName()
  19. {
  20. return 'xhRecommend';
  21. }
  22. }