// +---------------------------------------------------------------------- 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; }