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\ShippingTemplatesFreeCityDao;
|
|
|
|
|
use app\services\BaseServices;
|
|
|
|
|
use think\annotation\Inject;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 包邮和城市数据连表业务处理层
|
|
|
|
|
* Class ShippingTemplatesFreeCityServices
|
|
|
|
|
* @package app\services\product\shipping
|
|
|
|
|
* @mixin ShippingTemplatesFreeCityDao
|
|
|
|
|
*/
|
|
|
|
|
class ShippingTemplatesFreeCityServices extends BaseServices
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var ShippingTemplatesFreeCityDao
|
|
|
|
|
*/
|
|
|
|
|
#[Inject]
|
|
|
|
|
protected ShippingTemplatesFreeCityDao $dao;
|
|
|
|
|
}
|