This commit is contained in:
weiz 2024-03-14 16:13:59 +08:00
parent f4a553e78e
commit 9013338b2e

View File

@ -77,6 +77,19 @@ class CustomServiceController extends BaseAdminController
return $this->fail(CustomServiceLogic::getError());
}
/**
* @notes 删除
* @return \think\response\Json
* @author likeadmin
* @date 2023/11/11 22:56
*/
public function delete()
{
$params = (new CustomServiceValidate())->post()->goCheck('delete');
CustomServiceLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取详情