| 1234567891011121314151617181920212223 |
- <?php
- declare (strict_types = 1);
- namespace app\admin\controller\shop;
- use app\common\controller\Backend;
- use think\annotation\route\Group;
- use app\admin\traits\Actions;
- use app\common\model\ShopDelivery as ShopDeliveryModel;
- #[Group("shop/shop_delivery")]
- class ShopDelivery extends Backend
- {
- use Actions;
- protected function _initialize()
- {
- parent::_initialize();
- $this->model = new ShopDeliveryModel();
- }
- }
|