50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
|
<?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\ShippingTemplateRegionRepository as repository;
|
|||
|
|
|||
|
class ShippingTemplateRegion extends BaseController
|
|||
|
{
|
|||
|
protected $repository;
|
|||
|
|
|||
|
/**
|
|||
|
* ShippingTemplateRegion 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('删除成功') ;
|
|||
|
}
|
|||
|
|
|||
|
}
|