| | |
| | | public R volunteeringTypeExpurgateData(@RequestParam("id") String id); |
| | | |
| | | |
| | | /********************************************************************************************************* |
| | | * |
| | | * |
| | | * 金汇商城商品 |
| | | * |
| | | * |
| | | *********************************************************************************************************/ |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/jinhuiShopping/shoppingGetList") |
| | | public R shoppingGetList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "goodName", required = false) String goodName, |
| | | @RequestParam(value = "goodType", required = false) String goodType, |
| | | @RequestParam(value = "id", required = false) String id); |
| | | |
| | | |
| | | @GetMapping("/jinhuiShopping/shoppingGetDetails") |
| | | public R shoppingGetDetails(@RequestParam("id") String id); |
| | | |
| | | /** |
| | | * 新增 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/jinhuiShopping/shoppingAddData") |
| | | public R shoppingAddData(@RequestBody JinhuiShoppingVO item); |
| | | |
| | | |
| | | @PostMapping("/jinhuiShopping/shoppingEditData") |
| | | public R shoppingEditData(@RequestBody JinhuiShoppingVO item); |
| | | |
| | | @DeleteMapping("/jinhuiShopping/shoppingExpurgateData") |
| | | public R shoppingExpurgateData(@RequestParam("id") String id); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |