2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\services\product\shipping;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\dao\product\shipping\ShippingTemplatesRegionCityDao;
|
|
|
|
|
use app\services\BaseServices;
|
|
|
|
|
use think\annotation\Inject;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据地区设置邮费
|
|
|
|
|
* Class ShippingTemplatesRegionCityServices
|
|
|
|
|
* @package app\services\product\shipping
|
|
|
|
|
* @mixin ShippingTemplatesRegionCityDao
|
|
|
|
|
*/
|
|
|
|
|
class ShippingTemplatesRegionCityServices extends BaseServices
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var ShippingTemplatesRegionCityDao
|
|
|
|
|
*/
|
|
|
|
|
#[Inject]
|
|
|
|
|
protected ShippingTemplatesRegionCityDao $dao;
|
|
|
|
|
|
|
|
|
|
}
|