lidongdong
2023-08-31 0d15a472f111a8fd73b549ac0247313f32df0214
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -11416,7 +11416,7 @@
     * @param grantIntegral
     * @return
     */
    @PostMapping("/grantIntegral")
    @PostMapping("/VolunteerActivitiesPeople/grantIntegral")
    public R grantIntegral(@RequestBody GrantIntegral grantIntegral);
    /**************************************************************************************************************
@@ -11541,7 +11541,7 @@
                     @RequestParam(value = "userName", required = false) String userName,
                     @RequestParam(value = "communityId", required = false) String communityId,
                     @RequestParam(value = "userId", required = false) String userId,
                     @RequestParam(value = "orderType", required = true) String orderType);
                     @RequestParam(value = "orderType", required = false) String orderType);
    /**
     * 查询详情
@@ -11558,6 +11558,14 @@
     */
    @PostMapping("/VolunteerIntegralMerchant/order/insertData")
    public R insertData(@RequestBody VolunteerCreditsExchangeVO item);
    /**
     * 新增用户购买商家商品记录
     * @param
     * @return
     */
    @PostMapping("/VolunteerIntegralMerchant/order/insertMerchantData")
    public R insertMerchantData(@RequestBody VolunteerCreditsExchangeVO item);
    /**
     * 更新
@@ -11628,4 +11636,21 @@
    @GetMapping("/VolunteerMerchant/getById")
    public R volunteerMerchantGetById(@RequestParam("id") String id);
    /**
     * 是否是商家
     * @param userId
     * @return
     */
    @GetMapping("/VolunteerMerchant/isMerchant")
    public R isMerchant(@RequestParam("userId") String userId);
    /**
     * 社区取消订单
     * @param id
     * @return
     */
    @GetMapping("/VolunteerIntegralMerchant/order/communityCancellation")
    public R communityCancellation(@RequestParam("id") String id);
}