| | |
| | | * @param operator |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/point/delete") |
| | | @DeleteMapping("/convenient/point/delete") |
| | | R deletePoint(@RequestParam("pointId") Long pointId, @RequestParam("operator") Long operator); |
| | | |
| | | /** |
| | |
| | | * @param pointId |
| | | * @return |
| | | */ |
| | | @GetMapping("/point/detail") |
| | | @GetMapping("/convenient/point/detail") |
| | | R detailPoint(@RequestParam("pointId") Long pointId); |
| | | |
| | | /** |
| | |
| | | * @param pageConvenientGoodsCategoryDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/goodsCategory/page") |
| | | @PostMapping("/convenient/goodsCategory/page") |
| | | R pageGoodsCategory(@RequestBody PageConvenientGoodsCategoryDTO pageConvenientGoodsCategoryDTO); |
| | | |
| | | @GetMapping("/dataCount") |
| | |
| | | * 获取所有商品分类 |
| | | * @return |
| | | */ |
| | | @GetMapping("/goodsCategory/getAllGoodsCategories") |
| | | @GetMapping("/convenient/goodsCategory/getAllGoodsCategories") |
| | | R getAllGoodsCategories(); |
| | | |
| | | /** |