App分销申请

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-08-12 14:17:03 +08:00
parent e65889f4bf
commit 1ae2b1370a
1 changed files with 11 additions and 0 deletions

View File

@ -98,6 +98,17 @@ public class CustomerPlaceController extends BaseController
return toAjax(customerPlaceService.insertCustomerPlace(customerPlace)); 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));
}
/** /**
* 修改分销申请 * 修改分销申请
*/ */