You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LiveRoomGoodsServices.php 400B

12345678910111213141516171819202122
  1. <?php
  2. declare (strict_types=1);
  3. namespace app\services\activity\live;
  4. use app\dao\activity\live\LiveRoomGoodsDao;
  5. use app\services\BaseServices;
  6. /**
  7. * 直播间关联商品
  8. * Class LiveRoomGoodsServices
  9. * @package app\services\activity\live
  10. */
  11. class LiveRoomGoodsServices extends BaseServices
  12. {
  13. public function __construct(LiveRoomGoodsDao $dao)
  14. {
  15. $this->dao = $dao;
  16. }
  17. }