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)); + } + /** * 修改分销申请 */