CRMEB/crmeb/app/services/order/StoreOrderStoreOrderCartInfoServices.php
2021-07-13 16:49:21 +08:00

35 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
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;
}
}