| | |
| | | */ |
| | | @GetMapping("/VolunteerType/volunteerTypeGetList") |
| | | public R volunteerTypeGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize); |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam("type") String type); |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | public R VolunteerIntegralMerchantQueryList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "name", required = false) String name, |
| | | @RequestParam(value = "state", required = false) String state); |
| | | @RequestParam(value = "state", required = false) String state, |
| | | @RequestParam(value = "goodType", required = false) String goodType, |
| | | @RequestParam(value = "merchantId", required = false) String merchantId); |
| | | |
| | | /** |
| | | * 新增 |
| | |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("order/getList") |
| | | @GetMapping("/VolunteerIntegralMerchant/order/getList") |
| | | public R getList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "goodsId", required = false) String goodsId, |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("order/getData") |
| | | @GetMapping("/VolunteerIntegralMerchant/order/getData") |
| | | public R getData(@RequestParam("id") String id); |
| | | |
| | | /** |
| | |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/order/insertData") |
| | | @PostMapping("/VolunteerIntegralMerchant/order/insertData") |
| | | public R insertData(@RequestBody VolunteerCreditsExchangeVO item); |
| | | |
| | | /** |
| | |
| | | * @param item |
| | | * @return |
| | | */ |
| | | @PostMapping("/order/update") |
| | | @PostMapping("/VolunteerIntegralMerchant/order/update") |
| | | public R update(@RequestBody VolunteerCreditsExchangeVO item); |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/order/delete") |
| | | @DeleteMapping("/VolunteerIntegralMerchant/order/delete") |
| | | public R delete(@RequestParam("id") String id); |
| | | |
| | | /** |
| | |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/order/conditionData") |
| | | @GetMapping("/VolunteerIntegralMerchant/order/conditionData") |
| | | public R conditionData(@RequestParam("id") String id); |
| | | |
| | | /***************************************************************************************************************** |
| | | * |
| | | * |
| | | * 路北社区商家管理 |
| | | * |
| | | * |
| | | *****************************************************************************************************************/ |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/VolunteerMerchant/getList") |
| | | public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "merchantState", required = false) String merchantState, |
| | | @RequestParam(value = "merchantType", required = false) String merchantType, |
| | | @RequestParam(value = "name", required = false) String name, |
| | | @RequestParam(value = "communityId", required = false) String communityId); |
| | | |
| | | /** |
| | | * 新增 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/VolunteerMerchant/insert") |
| | | public R insertVolunteerMerchant(@RequestBody VolunteerMerchantVO vtvo); |
| | | |
| | | |
| | | @PostMapping("/VolunteerMerchant/update") |
| | | public R updateVolunteerMerchant(@RequestBody VolunteerMerchantVO vtvo); |
| | | |
| | | |
| | | @DeleteMapping("/VolunteerMerchant/delete") |
| | | public R deleteVolunteerMerchant(@RequestParam("pageNum") String id); |
| | | |
| | | @GetMapping("/VolunteerMerchant/getUser") |
| | | public R volunteerMerchantGetUser(@RequestParam("communityId") String communityId, |
| | | @RequestParam(value = "userName", required = false) String userName, |
| | | @RequestParam(value = "userPhone", required = false)String userPhone); |
| | | |
| | | |
| | | @GetMapping("/getById") |
| | | public R volunteerMerchantGetById(@RequestParam("id") String id); |
| | | |
| | | } |