ShippingTemplatesRegionCityServices.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\services\shipping;
  12. use app\dao\shipping\ShippingTemplatesRegionCityDao;
  13. use app\services\BaseServices;
  14. /**
  15. * 根据地区设置邮费
  16. * Class ShippingTemplatesRegionCityServices
  17. * @package app\services\shipping
  18. * @method getUniqidList(array $where,bool $group) 获取指定条件下的包邮列表
  19. */
  20. class ShippingTemplatesRegionCityServices extends BaseServices
  21. {
  22. /**
  23. * 构造方法
  24. * ShippingTemplatesRegionCityServices constructor.
  25. * @param ShippingTemplatesRegionCityDao $dao
  26. */
  27. public function __construct(ShippingTemplatesRegionCityDao $dao)
  28. {
  29. $this->dao = $dao;
  30. }
  31. }