| 123456789101112131415161718192021222324 |
- <?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 think\annotation\route\Route;
- 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();
- $this->relationField=['customer','user'];
- }
- }
|