// +---------------------------------------------------------------------- namespace app\services\order; use app\dao\order\StoreOrderStoreOrderCartInfoDao; use app\services\BaseServices; /** * Class StoreOrderStoreOrderCartInfoServices * @package app\services\order * @method getUserCartProductIds(array $where) 获取用户购买过的商品id */ class StoreOrderStoreOrderCartInfoServices extends BaseServices { /** * StoreOrderStoreOrderCartInfoServices constructor. * @param StoreOrderStoreOrderCartInfoDao $dao */ public function __construct(StoreOrderStoreOrderCartInfoDao $dao) { $this->dao = $dao; } }