12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\merchant\store\shipping;
- use think\App;
- use crmeb\basic\BaseController;
- use app\common\repositories\store\shipping\ShippingTemplateUndeliveRepository as repository;
- class ShippingTemplateUndelive extends BaseController
- {
- protected $repository;
- /**
- * ShippingTemplateUndelive constructor.
- * @param App $app
- * @param repository $repository
- */
- public function __construct(App $app, repository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * @Author:Qinii
- * @Date: 2020/5/8
- * @Time: 14:39
- * @param $id
- * @return mixed
- */
- public function delete($id)
- {
- if(!$this->repository->merExists($this->request->merId(),$id))
- return app('json')->fail('数据不存在');
- $this->repository->delete($id);
- return app('json')->success('删除成功') ;
- }
- }
|