From 1ae2b1370a04f2ea5b8ff636a51ec798fc142485 Mon Sep 17 00:00:00 2001 From: "kuang.yifei@iwhalecloud.com" Date: Fri, 12 Aug 2022 14:17:03 +0800 Subject: [PATCH] =?UTF-8?q?App=E5=88=86=E9=94=80=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/customer/CustomerPlaceController.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ghy-admin/src/main/java/com/ghy/web/controller/customer/CustomerPlaceController.java b/ghy-admin/src/main/java/com/ghy/web/controller/customer/CustomerPlaceController.java index 08971e7a..0df8f4c6 100644 --- a/ghy-admin/src/main/java/com/ghy/web/controller/customer/CustomerPlaceController.java +++ b/ghy-admin/src/main/java/com/ghy/web/controller/customer/CustomerPlaceController.java @@ -98,6 +98,17 @@ public class CustomerPlaceController extends BaseController return toAjax(customerPlaceService.insertCustomerPlace(customerPlace)); } + /** + * 新增保存分销申请 + */ + @Log(title = "分销申请", businessType = BusinessType.INSERT) + @PostMapping("/app/add") + @ResponseBody + public AjaxResult appAdd(@RequestBody CustomerPlace customerPlace) + { + return toAjax(customerPlaceService.insertCustomerPlace(customerPlace)); + } + /** * 修改分销申请 */