| | |
| | | |
| | | |
| | | |
| | | /*************************************************************************************************************** |
| | | * |
| | | * 路北社区商家提现 |
| | | * |
| | | ****************************************************************************************************************/ |
| | | |
| | | /** |
| | | * 商家提现列表啊 |
| | | * @param disposeType |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/withdraw/getList") |
| | | public R WithdrawGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "disposeType", required = false) String disposeType, |
| | | @RequestParam(value = "merchantName", required = false) String merchantName); |
| | | |
| | | /** |
| | | * 新增商家提现 |
| | | * @param item |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerMerchant/withdraw/insert") |
| | | public R WithdrawInsert(@RequestBody VolunteerMerchantWithdrawVO item); |
| | | |
| | | /** |
| | | * 编辑商家提现 |
| | | * @param item |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerMerchant/withdraw/update") |
| | | public R WithdrawUpdate(@RequestBody VolunteerMerchantWithdrawVO item); |
| | | |
| | | /** |
| | | * 删除商家提现 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/withdraw/delete") |
| | | public R WithdrawDelete(@RequestParam("id") String id); |
| | | |
| | | /** |
| | | * 处理商家提现 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/withdraw/dispose") |
| | | public R WithdrawDispose(@RequestParam("id") String id); |
| | | |
| | | |
| | | |