From 925f487df80581204ea3812ce18b0a4422a12b2f Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期五, 25 八月 2023 14:18:54 +0800 Subject: [PATCH] 新增积分商城模块(新增商品 编辑商品 删除商品 商品列表) 修改活动人员统计为0 修改小程序活动报名报错 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 50 +++++++++++++++++++++++++------------------------- 1 files changed, 25 insertions(+), 25 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 527b034..224b3d6 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -11486,31 +11486,31 @@ */ @GetMapping("/VolunteerIntegralMerchant/queryById") public R VolunteerIntegralMerchantQueryById(@RequestParam("id") String id); -// -// /** -// * 分页查询 -// * @param -// * @return -// */ -// @GetMapping("/VolunteerIntegralMerchant/queryList") -// public R VolunteerIntegralMerchantQueryList(@RequestParam("pageNum") int pageNum, -// @RequestParam("pageSize") int pageSize, -// @RequestParam("name") String name, -// @RequestParam("state") String state); -// -// /** -// * 新增 -// * @param -// * @return -// */ -// @PostMapping("/VolunteerIntegralMerchant/insertVolunteer") -// public R VolunteerIntegralMerchantInsertVolunteer(@RequestBody VolunteerIntegralMerchantVO vimVO); -// -// @PostMapping("/VolunteerIntegralMerchant/updateById") -// public R VolunteerIntegralMerchantUpdateById(@RequestBody VolunteerIntegralMerchantVO vimVO); -// -// @DeleteMapping("/VolunteerIntegralMerchant/deleteById") -// public R VolunteerIntegralMerchantDeleteById(@RequestParam String id); + + /** + * 分页查询 + * @param + * @return + */ + @GetMapping("/VolunteerIntegralMerchant/queryList") + public R VolunteerIntegralMerchantQueryList(@RequestParam("pageNum") int pageNum, + @RequestParam("pageSize") int pageSize, + @RequestParam("name") String name, + @RequestParam("state") String state); + + /** + * 新增 + * @param + * @return + */ + @PostMapping("/VolunteerIntegralMerchant/insertVolunteer") + public R VolunteerIntegralMerchantInsertVolunteer(@RequestBody VolunteerIntegralMerchantVO vimVO); + + @PostMapping("/VolunteerIntegralMerchant/updateById") + public R VolunteerIntegralMerchantUpdateById(@RequestBody VolunteerIntegralMerchantVO vimVO); + + @DeleteMapping("/VolunteerIntegralMerchant/deleteById") + public R VolunteerIntegralMerchantDeleteById(@RequestParam String id); -- Gitblit v1.7.1