Files
huangjingfen/pro_v3.5.1/app/services/product/shipping/ShippingTemplatesFreeCityServices.php

27 lines
711 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
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;
}