From b1f3e95844ee460b0b9ba3a8cf6e9a7a40a8f5c7 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期三, 30 八月 2023 14:27:41 +0800 Subject: [PATCH] 新增小程序商品添加 修改 上下架 查询 删除接口 --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/VolunteerActivitiesPeopleApi.java | 41 +++++++++++++++++++++++++++++++++++++---- 1 files changed, 37 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/VolunteerActivitiesPeopleApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/VolunteerActivitiesPeopleApi.java index dda56c2..298fcb4 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/VolunteerActivitiesPeopleApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/VolunteerActivitiesPeopleApi.java @@ -3,6 +3,7 @@ import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.community.VolunteerActivitiesPeopleVO; +import com.panzhihua.common.model.vos.community.VolunteerIntegralMerchantVO; import com.panzhihua.common.model.vos.community.VolunteerIntegralRecordVO; import com.panzhihua.common.service.community.CommunityService; import com.panzhihua.common.utlis.StringUtils; @@ -167,7 +168,7 @@ public R volunteerTypeGetList(@RequestParam("pageNum") int pageNum, @RequestParam("pageSize") int pageSize) { - return volunteerActivitiesPeople.volunteerTypeGetList(pageNum,pageSize); + return volunteerActivitiesPeople.volunteerTypeGetList(pageNum,pageSize,"1"); } /************************************************************************************************** @@ -262,13 +263,45 @@ @GetMapping("/VolunteerIntegralMerchant/queryList") public R VolunteerIntegralMerchantQueryList(@RequestParam("pageNum") int pageNum, @RequestParam("pageSize") int pageSize, - @RequestParam("name") String name, - @RequestParam("state") String state) + @RequestParam(value = "name", required = false) String name, + @RequestParam(value = "state", required = false) String state) { - return volunteerActivitiesPeople.VolunteerIntegralMerchantQueryList(pageNum,pageSize,name,state); + return volunteerActivitiesPeople.VolunteerIntegralMerchantQueryList(pageNum,pageSize,name,state,"1",null); } + /** + * 新增 + * @param + * @return + */ + @PostMapping("/VolunteerIntegralMerchant/insertVolunteer") + public R VolunteerIntegralMerchantInsertVolunteer(@RequestBody VolunteerIntegralMerchantVO vimVO) + { + vimVO.setGoodType("1"); + return volunteerActivitiesPeople.VolunteerIntegralMerchantInsertVolunteer(vimVO); + } + @PostMapping("/VolunteerIntegralMerchant/updateById") + public R VolunteerIntegralMerchantUpdateById(@RequestBody VolunteerIntegralMerchantVO vimVO) + { + vimVO.setGoodType("1"); + return volunteerActivitiesPeople.VolunteerIntegralMerchantUpdateById(vimVO); + } + + + @PostMapping("/VolunteerIntegralMerchant/unmount") + public R VolunteerIntegralMerchantUnmount(@RequestBody VolunteerIntegralMerchantVO vimVO) + { + vimVO.setGoodType("1"); + return volunteerActivitiesPeople.VolunteerIntegralMerchantUnmount(vimVO); + } + + + @DeleteMapping("/VolunteerIntegralMerchant/deleteById") + public R VolunteerIntegralMerchantDeleteById(@RequestParam("id") String id) + { + return volunteerActivitiesPeople.VolunteerIntegralMerchantDeleteById(id); + } } -- Gitblit v1.7.1