Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user